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;