Add menu_setting_ctl

This commit is contained in:
twinaphex 2016-03-18 22:16:57 +01:00
parent 9259b141a6
commit 6b01dd86ae
2 changed files with 20 additions and 0 deletions

View File

@ -7547,3 +7547,16 @@ error:
return NULL;
}
bool menu_setting_ctl(enum menu_setting_ctl_state state, void *data)
{
switch (state)
{
case MENU_SETTING_CTL_NONE:
default:
break;
}
return true;
}

View File

@ -63,6 +63,11 @@ enum setting_flags
SD_FLAG_ADVANCED = (1 << 9)
};
enum menu_setting_ctl_state
{
MENU_SETTING_CTL_NONE = 0
};
enum setting_list_flags
{
SL_FLAG_MAIN_MENU = (1 << 0),
@ -379,6 +384,8 @@ void settings_data_list_current_add_flags(
rarch_setting_info_t *list_info,
unsigned values);
bool menu_setting_ctl(enum menu_setting_ctl_state state, void *data);
#ifdef __cplusplus
}
#endif