mirror of
https://github.com/libretro/RetroArch
synced 2025-02-06 09:40:06 +00:00
Add menu_setting_ctl
This commit is contained in:
parent
9259b141a6
commit
6b01dd86ae
@ -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;
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user