diff --git a/gfx/video_driver.c b/gfx/video_driver.c index f6ca31e1b4..6b249d3980 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -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, diff --git a/runloop.c b/runloop.c index 514b1d9756..ebfcfe7781 100644 --- a/runloop.c +++ b/runloop.c @@ -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);