From 42b990fd0951b724a2d150e5fbdc86e7ffe4d934 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 9 Jan 2015 22:03:33 +0100 Subject: [PATCH] Nit/cleanup --- runloop.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/runloop.c b/runloop.c index 8f054b4680..b31c8c74fc 100644 --- a/runloop.c +++ b/runloop.c @@ -104,13 +104,14 @@ static bool check_pause(bool pressed, bool frameadvance_pressed) * * Checks if the current frame is one-shot frame type. * + * Rewind buttons works like FRAMEREWIND when paused. + * We will one-shot in that case. + * * Returns: true if libretro frame is one-shot, otherwise false.. * **/ static inline bool check_is_oneshot(bool oneshot_pressed, bool rewind_pressed) { - /* Rewind buttons works like FRAMEREWIND when paused. - * We will one-shot in that case. */ return (oneshot_pressed | rewind_pressed); }