(NGC/Wii) Buildfix

This commit is contained in:
twinaphex 2016-10-26 06:04:42 +02:00
parent d2cfc3cb17
commit 170febb72c
2 changed files with 8 additions and 6 deletions

View File

@ -1191,8 +1191,8 @@ void video_driver_menu_settings(void **list_data, void *list_info_data,
#if defined(GEKKO) || defined(__CELLOS_LV2__)
CONFIG_ACTION(
list, list_info,
msg_hash_to_str(MENU_ENUM_LABEL_SCREEN_RESOLUTION),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION),
MENU_ENUM_LABEL_SCREEN_RESOLUTION,
MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION,
group_info,
subgroup_info,
parent_group);
@ -1219,8 +1219,8 @@ void video_driver_menu_settings(void **list_data, void *list_info_data,
CONFIG_UINT(
list, list_info,
&global->console.screen.gamma_correction,
msg_hash_to_str(MENU_ENUM_LABEL_VIDEO_GAMMA),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA),
MENU_ENUM_LABEL_VIDEO_GAMMA,
MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA,
0,
group_info,
subgroup_info,
@ -1268,8 +1268,8 @@ void video_driver_menu_settings(void **list_data, void *list_info_data,
CONFIG_UINT(
list, list_info,
&settings->video.swap_interval,
msg_hash_to_str(MENU_ENUM_LABEL_VIDEO_FILTER_FLICKER),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER),
MENU_ENUM_LABEL_VIDEO_FILTER_FLICKER,
MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER,
0,
group_info,
subgroup_info,

View File

@ -812,7 +812,9 @@ static enum runloop_state runloop_check_state(
static char prev_overlay_restore = false;
bool osk_enable = input_driver_is_onscreen_keyboard_enabled();
#endif
#ifdef HAVE_NETWORKING
bool tmp = false;
#endif
bool focused = true;
uint64_t trigger_input = current_input & ~old_input;
bool pause_pressed = runloop_cmd_triggered(trigger_input, RARCH_PAUSE_TOGGLE);