(RARCH_CONSOLE) All consoles supported by libretro/RetroArch so

far (Xbox 1/360/Wii/Gamecube/PS3) all seem to have their video
modes run at 59.94Hz
This commit is contained in:
twinaphex 2013-01-18 12:36:23 +01:00
parent 8e7a396c96
commit 6935316016

View File

@ -277,10 +277,8 @@ static const bool font_enable = true;
// This value should stay close to 60Hz to avoid large pitch changes.
// If your monitor does not run at 60Hz, or something close to it, disable VSync,
// and leave this at its default.
#if defined(__CELLOS_LV2__) || defined(GEKKO)
#if defined(RARCH_CONSOLE)
static const float refresh_rate = 59.94;
#elif defined(RARCH_CONSOLE)
static const float refresh_rate = 59.92;
#else
static const float refresh_rate = 59.95;
#endif