From 9a073cfa6db0a72c744f9e37d0b6fb07a09f1b04 Mon Sep 17 00:00:00 2001 From: Robz8 Date: Tue, 11 Jul 2017 10:59:55 -0600 Subject: [PATCH] bug fix --- arm9/source/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/source/main.cpp b/arm9/source/main.cpp index fc4926be6..f699cc3e2 100644 --- a/arm9/source/main.cpp +++ b/arm9/source/main.cpp @@ -233,7 +233,7 @@ int main( int argc, char **argv) { std::string savPath = bootstrapini.GetString( "NDS-BOOTSTRAP", "SAV_PATH", ""); - bool useArm7Donor = bootstrapini.GetInt( "NDS-BOOTSTRAP", "USE_ARM7_DONOR", 1); + int useArm7Donor = bootstrapini.GetInt( "NDS-BOOTSTRAP", "USE_ARM7_DONOR", 1); std::string arm7DonorPath;