From 9adbed9d81a9dcafbefbe4f635aace95bc88060c Mon Sep 17 00:00:00 2001 From: thedax Date: Wed, 25 Jul 2018 08:00:04 -0400 Subject: [PATCH] Switch has to wait for VSync too. (#2) --- source/console.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/console.c b/source/console.c index 41031d6..ad74114 100644 --- a/source/console.c +++ b/source/console.c @@ -220,6 +220,8 @@ console_render(void) gfxFlushBuffers(); #ifdef _3DS gspWaitForVBlank(); +#else + gfxWaitForVsync(); #endif gfxSwapBuffers(); }