mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-13 11:38:34 +00:00
Fix a bad enum compare.
This commit is contained in:
parent
0cd5766f50
commit
e355518549
@ -193,7 +193,7 @@ void ArmRegCache::FlushR(MIPSReg r) {
|
||||
break;
|
||||
|
||||
case ML_ARMREG:
|
||||
if (mr[r].reg == (int)INVALID_REG) {
|
||||
if (mr[r].reg == INVALID_REG) {
|
||||
ERROR_LOG(HLE, "FlushMipsReg: MipsReg had bad ArmReg");
|
||||
}
|
||||
if (ar[mr[r].reg].isDirty) {
|
||||
|
Loading…
Reference in New Issue
Block a user