From 69353160160db81a3048fdee7d1b0477f3bf2902 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 18 Jan 2013 12:36:23 +0100 Subject: [PATCH] (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 --- config.def.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/config.def.h b/config.def.h index 1e9a9329af..066d65b7f0 100644 --- a/config.def.h +++ b/config.def.h @@ -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