diff --git a/Source/Core/Core/Src/ActionReplay.cpp b/Source/Core/Core/Src/ActionReplay.cpp index 6a34173f6b..65c3274264 100644 --- a/Source/Core/Core/Src/ActionReplay.cpp +++ b/Source/Core/Core/Src/ActionReplay.cpp @@ -98,9 +98,10 @@ void LoadActionReplayCodes(IniFile &ini) encryptedLines.clear(); } currentCode.name = line; - Core::DisplayMessage("AR code active: " + line, 5000); - if (line[0] == '+') + if (line[0] == '+'){ + Core::DisplayMessage("AR code active: " + line, 5000); currentCode.active = true; + } else currentCode.active = false; continue;