From 1af593f910b586b00b2cf21a69fa21107b9313fd Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Sun, 12 Aug 2012 09:19:06 +0200 Subject: [PATCH] (RARCH_CONSOLE) Run set_nonblock_state if an emu runs at more than 60fps/60Hz - to forcibly set vsync off --- driver.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/driver.c b/driver.c index 973c08c0a9..03974700d6 100644 --- a/driver.c +++ b/driver.c @@ -208,6 +208,9 @@ static void adjust_system_rates(void) { g_settings.video.vsync = false; RARCH_LOG("Game FPS > Monitor FPS. Cannot rely on VSync.\n"); +#ifdef RARCH_CONSOLE + video_set_nonblock_state_func(false); +#endif } g_settings.video.refresh_rate = info->fps;