(GX) Change ifdef HW_RVL to ifdef GEKKO for Gamecube resolution

support
This commit is contained in:
twinaphex 2013-05-23 13:26:06 +02:00
parent 1b85bcfdc3
commit 1e05541477

View File

@ -1852,7 +1852,7 @@ static int video_option_toggle_setting(rgui_handle_t *rgui, unsigned setting, rg
break; break;
#endif #endif
#ifdef HW_RVL #ifdef GEKKO
case RGUI_SETTINGS_VIDEO_RESOLUTION: case RGUI_SETTINGS_VIDEO_RESOLUTION:
if (action == RGUI_ACTION_LEFT) if (action == RGUI_ACTION_LEFT)
{ {
@ -1876,7 +1876,8 @@ static int video_option_toggle_setting(rgui_handle_t *rgui, unsigned setting, rg
} }
} }
break; break;
#endif
#ifdef HW_RVL
case RGUI_SETTINGS_VIDEO_SOFT_FILTER: case RGUI_SETTINGS_VIDEO_SOFT_FILTER:
if (g_extern.lifecycle_mode_state & (1ULL << MODE_VIDEO_SOFT_FILTER_ENABLE)) if (g_extern.lifecycle_mode_state & (1ULL << MODE_VIDEO_SOFT_FILTER_ENABLE))
g_extern.lifecycle_mode_state &= ~(1ULL << MODE_VIDEO_SOFT_FILTER_ENABLE); g_extern.lifecycle_mode_state &= ~(1ULL << MODE_VIDEO_SOFT_FILTER_ENABLE);