From c50352ebb97f49a00d74d8dd355d00b52fcd13c8 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 5 Oct 2014 02:37:13 +0200 Subject: [PATCH] runloop.c - check_pause - small nit --- runloop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runloop.c b/runloop.c index c3cdbdb681..d228223d33 100644 --- a/runloop.c +++ b/runloop.c @@ -152,11 +152,11 @@ static void check_pause(bool pressed, bool frameadvance_pressed) focus = driver.video->focus(driver.video_data); if (focus && pressed) - g_extern.is_paused = !g_extern.is_paused; + g_extern.is_paused = !g_extern.is_paused; else if (focus && !old_focus) g_extern.is_paused = false; else if (!focus && old_focus) - g_extern.is_paused = true; + g_extern.is_paused = true; if (g_extern.is_paused) {