From 6c3e3e071ebca83850864d94bf58e9e73946a26e Mon Sep 17 00:00:00 2001 From: Floogle <18466542+skyfloogle@users.noreply.github.com> Date: Mon, 25 Mar 2024 18:11:28 +0100 Subject: [PATCH] fix flickering on crash screen --- source/3ds/main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/3ds/main.c b/source/3ds/main.c index 7e7e5e8..ce30880 100644 --- a/source/3ds/main.c +++ b/source/3ds/main.c @@ -133,7 +133,10 @@ int main() { osTickCounterUpdate(&drcTickCounter); if (err) { showError(err); - waitForInput(); + do { + hidScanInput(); + gspWaitForVBlank(); + } while (aptMainLoop() && !hidKeysDown()); goto exit; }