mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 15:30:35 +00:00
Minor CwCheat bugfix contributed by dlanor in issue #4103
This commit is contained in:
parent
07c5e6bb9b
commit
db568e4553
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user