Switch: Fix fast-forward limiting
Vicki Pfau vi@endrift.com
Sun, 16 Sep 2018 15:36:48 -0700
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
src/platform/switch/main.c
→
src/platform/switch/main.c
@@ -148,7 +148,7 @@ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
} static void _drawEnd(void) { - if (frameLimiter || (framecount & 2) == 0) { + if (frameLimiter || (framecount & 3) == 0) { eglSwapBuffers(s_display, s_surface); } }