From 7e8efe963f4ead0a5c22702952437187ea5e946e Mon Sep 17 00:00:00 2001 From: Mystro256 Date: Sun, 12 Feb 2017 01:00:41 -0500 Subject: [PATCH] Incorrect return value in cheatsImportGSACodeFile --- src/gba/Cheats.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gba/Cheats.cpp b/src/gba/Cheats.cpp index d855aadc..de48d605 100644 --- a/src/gba/Cheats.cpp +++ b/src/gba/Cheats.cpp @@ -2094,7 +2094,7 @@ bool cheatsImportGSACodeFile(const char* name, int game, bool v3) } } fclose(f); - return false; + return true; } void cheatsCBAReverseArray(uint8_t* array, uint8_t* dest)