diff --git a/Core/CwCheat.cpp b/Core/CwCheat.cpp index 67c39705a7..02c3bd4cc2 100644 --- a/Core/CwCheat.cpp +++ b/Core/CwCheat.cpp @@ -489,7 +489,7 @@ void CWCheatEngine::Run() { break; case 0xE: // Test commands, multiple skip { - bool is8Bit = (comm >> 24) == 0x1; + bool is8Bit = (comm >> 24) == 0xE1; addr = GetAddress(arg & 0x0FFFFFFF); if (Memory::IsValidAddress(addr)) { int memoryValue = is8Bit ? Memory::Read_U8(addr) : Memory::Read_U16(addr);