From 3e724e88a83da1b9273676a47ab81f1378931930 Mon Sep 17 00:00:00 2001 From: TuxSH Date: Fri, 19 Apr 2019 10:01:00 +0200 Subject: [PATCH] Fix crash dumps not saving properly --- arm9/source/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arm9/source/main.c b/arm9/source/main.c index 00d4092..5221361 100644 --- a/arm9/source/main.c +++ b/arm9/source/main.c @@ -119,7 +119,6 @@ void main(int argc, char **argv, u32 magicWord) I2C_init(); if(isInvalidLoader) error("Launched using an unsupported loader."); - detectAndProcessExceptionDumps(); installArm9Handlers(); if(memcmp(launchedPath, u"sdmc", 8) == 0) @@ -157,6 +156,8 @@ void main(int argc, char **argv, u32 magicWord) error("Launched from an unsupported location: %s.", mountPoint); } + detectAndProcessExceptionDumps(); + //Attempt to read the configuration file needConfig = readConfig() ? MODIFY_CONFIGURATION : CREATE_CONFIGURATION;