mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 04:14:00 +00:00
(Apple) Build fixes
This commit is contained in:
parent
a2db0bfdfa
commit
e8528d83e0
@ -25,7 +25,7 @@
|
||||
|
||||
#include "../../menu/menu.h"
|
||||
#include "../../menu/menu_entries.h"
|
||||
#include "../../menu/drivers_display/shared.h"
|
||||
#include "../../menu/drivers/shared.h"
|
||||
|
||||
/*********************************************/
|
||||
/* RunActionSheet */
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "bluetooth/btdynamic.h"
|
||||
#include "bluetooth/btpad.h"
|
||||
|
||||
#include "../../menu/drivers_display/ios.h"
|
||||
#include "../../menu/drivers/ios.h"
|
||||
|
||||
id<RetroArch_Platform> apple_platform;
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include "../frontend.h"
|
||||
#include "../../runloop.h"
|
||||
#ifdef IOS
|
||||
#include "../../menu/drivers_display/ios.h"
|
||||
#include "../../menu/drivers/ios.h"
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "ios.h"
|
||||
#include "../menu_input.h"
|
||||
|
||||
#ifdef 1
|
||||
#if 1
|
||||
static int ios_entry_iterate(unsigned action)
|
||||
{
|
||||
ios_handle_t *ios = NULL;
|
||||
|
@ -2684,7 +2684,7 @@ static int action_bind_up_or_down_generic(unsigned type, const char *label,
|
||||
return 0;
|
||||
}
|
||||
|
||||
int action_refresh_default(file_list_t *list, file_list_t *menu_list)
|
||||
static int action_refresh_default(file_list_t *list, file_list_t *menu_list)
|
||||
{
|
||||
int ret = menu_entries_deferred_push(list, menu_list);
|
||||
driver.menu->need_refresh = false;
|
||||
@ -2820,13 +2820,13 @@ static int action_iterate_info(const char *label, unsigned action)
|
||||
}
|
||||
else
|
||||
{
|
||||
const char *label = NULL;
|
||||
const char *lbl = NULL;
|
||||
menu_list_get_at_offset(driver.menu->menu_list->selection_buf,
|
||||
driver.menu->selection_ptr, NULL, &label,
|
||||
driver.menu->selection_ptr, NULL, &lbl,
|
||||
&info_type);
|
||||
|
||||
if (label)
|
||||
strlcpy(needle, label, sizeof(needle));
|
||||
if (lbl)
|
||||
strlcpy(needle, lbl, sizeof(needle));
|
||||
}
|
||||
|
||||
setting_data_get_description(needle, msg, sizeof(msg));
|
||||
|
Loading…
x
Reference in New Issue
Block a user