From aab39626fef0f5466655d26a48393536df7ea3de Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 17 Dec 2012 23:04:47 +0100 Subject: [PATCH] RARCH_PERFORMANCE_MODE - Small correction for conditional to do with rendering rarch_cached_frame in do_state_checks --- retroarch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroarch.c b/retroarch.c index 30d5988a5a..842b11f37c 100644 --- a/retroarch.c +++ b/retroarch.c @@ -2496,7 +2496,7 @@ static void do_state_checks(void) check_pause(); check_oneshot(); - if (g_extern.is_paused) + if (check_fullscreen() && g_extern.is_paused) rarch_render_cached_frame(); if (g_extern.is_paused && !g_extern.is_oneshot)