From 51947bbe033df1fc2cbc85e8a93f772084b84f95 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 27 May 2013 12:38:34 +0200 Subject: [PATCH] Refresh rate for Blackberry Playbook seems to be more along the lines of 59.86Hz, so set it to that. Note to CatalystG - try out what the refresh rate of your BB10 phone is by running RetroArch, exiting and then looking in the log for a line that says: "average monitor Hz" --- config.def.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index aee8eb6aee..6993926be9 100644 --- a/config.def.h +++ b/config.def.h @@ -310,7 +310,9 @@ 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(RARCH_CONSOLE) +#if defined(__QNX__) +static const float refresh rate = 59.86; +#elif defined(RARCH_CONSOLE) static const float refresh_rate = 59.94; #else static const float refresh_rate = 59.95;