(NGC/Wii) Buildfix
This commit is contained in:
parent
d2cfc3cb17
commit
170febb72c
|
@ -1191,8 +1191,8 @@ void video_driver_menu_settings(void **list_data, void *list_info_data,
|
||||||
#if defined(GEKKO) || defined(__CELLOS_LV2__)
|
#if defined(GEKKO) || defined(__CELLOS_LV2__)
|
||||||
CONFIG_ACTION(
|
CONFIG_ACTION(
|
||||||
list, list_info,
|
list, list_info,
|
||||||
msg_hash_to_str(MENU_ENUM_LABEL_SCREEN_RESOLUTION),
|
MENU_ENUM_LABEL_SCREEN_RESOLUTION,
|
||||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION),
|
MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION,
|
||||||
group_info,
|
group_info,
|
||||||
subgroup_info,
|
subgroup_info,
|
||||||
parent_group);
|
parent_group);
|
||||||
|
@ -1219,8 +1219,8 @@ void video_driver_menu_settings(void **list_data, void *list_info_data,
|
||||||
CONFIG_UINT(
|
CONFIG_UINT(
|
||||||
list, list_info,
|
list, list_info,
|
||||||
&global->console.screen.gamma_correction,
|
&global->console.screen.gamma_correction,
|
||||||
msg_hash_to_str(MENU_ENUM_LABEL_VIDEO_GAMMA),
|
MENU_ENUM_LABEL_VIDEO_GAMMA,
|
||||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA),
|
MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA,
|
||||||
0,
|
0,
|
||||||
group_info,
|
group_info,
|
||||||
subgroup_info,
|
subgroup_info,
|
||||||
|
@ -1268,8 +1268,8 @@ void video_driver_menu_settings(void **list_data, void *list_info_data,
|
||||||
CONFIG_UINT(
|
CONFIG_UINT(
|
||||||
list, list_info,
|
list, list_info,
|
||||||
&settings->video.swap_interval,
|
&settings->video.swap_interval,
|
||||||
msg_hash_to_str(MENU_ENUM_LABEL_VIDEO_FILTER_FLICKER),
|
MENU_ENUM_LABEL_VIDEO_FILTER_FLICKER,
|
||||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER),
|
MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER,
|
||||||
0,
|
0,
|
||||||
group_info,
|
group_info,
|
||||||
subgroup_info,
|
subgroup_info,
|
||||||
|
|
|
@ -812,7 +812,9 @@ static enum runloop_state runloop_check_state(
|
||||||
static char prev_overlay_restore = false;
|
static char prev_overlay_restore = false;
|
||||||
bool osk_enable = input_driver_is_onscreen_keyboard_enabled();
|
bool osk_enable = input_driver_is_onscreen_keyboard_enabled();
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_NETWORKING
|
||||||
bool tmp = false;
|
bool tmp = false;
|
||||||
|
#endif
|
||||||
bool focused = true;
|
bool focused = true;
|
||||||
uint64_t trigger_input = current_input & ~old_input;
|
uint64_t trigger_input = current_input & ~old_input;
|
||||||
bool pause_pressed = runloop_cmd_triggered(trigger_input, RARCH_PAUSE_TOGGLE);
|
bool pause_pressed = runloop_cmd_triggered(trigger_input, RARCH_PAUSE_TOGGLE);
|
||||||
|
|
Loading…
Reference in New Issue