From c8be806a586535a3c6f41875fe0e20f44e5a01dd Mon Sep 17 00:00:00 2001 From: Steveice10 Date: Mon, 19 Dec 2016 21:27:53 -0800 Subject: [PATCH] Enable N3DS speedup when running waithax. --- source/hax/khax.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/hax/khax.c b/source/hax/khax.c index c0771fa..51d4c29 100644 --- a/source/hax/khax.c +++ b/source/hax/khax.c @@ -53,11 +53,15 @@ bool khax_execute() { } else if(kver > SYSTEM_VERSION(2, 50, 11)) { printf("khax: Executing waithax...\n"); + osSetSpeedupEnable(true); + if(!waithax_run()) { printf("khax: waithax failed.\n"); return false; } + osSetSpeedupEnable(false); + khax_backdoor = waithax_backdoor; khax_cleanup = NULL; } else {