mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-13 18:30:32 +00:00
Fix Cwcheat code type for address compare
0xD code type took wrong address argument. Hopefully fixes #6624.
This commit is contained in:
parent
e48f812584
commit
f81d36a90c
@ -601,7 +601,7 @@ void CWCheatEngine::Run() {
|
||||
}
|
||||
else if (arg >> 28 == 0x4 || arg >> 28 == 0x5 || arg >> 28 == 0x6 || arg >> 28 == 0x7) {
|
||||
int addr1 = GetAddress(comm & 0x0FFFFFFF);
|
||||
int addr2 = GetAddress(arg & 0xFFFFFFFF);
|
||||
int addr2 = GetAddress(arg & 0x0FFFFFFF);
|
||||
code = GetNextCode();
|
||||
if (true)
|
||||
if (Memory::IsValidAddress(addr1) && Memory::IsValidAddress(addr2)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user