mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04: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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue