Fixing iOS build

This commit is contained in:
Jay McCarthy 2015-02-05 05:09:06 -05:00
parent 95df3dc394
commit 78f4d2a3d6
2 changed files with 10 additions and 6 deletions

View File

@ -656,12 +656,15 @@ static void RunActionSheet(const char* title, const struct string_list* items, U
cbs = (menu_file_list_cbs_t*)menu_list_get_actiondata_at_offset(
driver.menu->menu_list->selection_buf, i);
disp_set_label
(driver.menu->menu_list->selection_buf, &w, type, i, label,
type_str, sizeof(type_str),
entry_label, path,
path_buf, sizeof(path_buf));
if (cbs && cbs->action_get_representation) {
cbs->action_get_representation
(driver.menu->menu_list->selection_buf,
&w, type, i, label,
type_str, sizeof(type_str),
entry_label, path,
path_buf, sizeof(path_buf));
}
if (setting && setting->type == ST_ACTION &&
setting->flags & SD_FLAG_BROWSER_ACTION &&
setting->action_toggle &&

View File

@ -18,6 +18,7 @@
#define __RARCH_SETTINGS_DATA_H__
#include <stdint.h>
#include <file/file_list.h>
#include <file/config_file.h>
#include <retro_miscellaneous.h>
#include "settings_list.h"