Fix crash dumps not saving properly

This commit is contained in:
TuxSH 2019-04-19 10:01:00 +02:00
parent 687dfddd9f
commit 3e724e88a8

View File

@ -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;