From 4eeff830ed69a1a1207b41b94e98e8dfbe25964c Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Sun, 16 Sep 2018 15:36:48 -0700 Subject: [PATCH] Switch: Fix fast-forward limiting --- src/platform/switch/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/switch/main.c b/src/platform/switch/main.c index e0ffa43ee..cc6b43111 100644 --- a/src/platform/switch/main.c +++ b/src/platform/switch/main.c @@ -148,7 +148,7 @@ static void _drawStart(void) { } static void _drawEnd(void) { - if (frameLimiter || (framecount & 2) == 0) { + if (frameLimiter || (framecount & 3) == 0) { eglSwapBuffers(s_display, s_surface); } }