mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-13 11:38:34 +00:00
Fix some type comparison warnings.
This commit is contained in:
parent
0a8e6c2a06
commit
9a41dec0ff
@ -352,7 +352,7 @@ void ArmRegCacheFPU::FlushR(MIPSReg r) {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case ML_ARMREG:
|
case ML_ARMREG:
|
||||||
if (mr[r].reg == (int)INVALID_REG) {
|
if (mr[r].reg == INVALID_REG) {
|
||||||
ERROR_LOG(JIT, "FlushR: MipsReg had bad ArmReg");
|
ERROR_LOG(JIT, "FlushR: MipsReg had bad ArmReg");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -502,7 +502,7 @@ void ArmRegCacheFPU::DiscardR(MIPSReg r) {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case ML_ARMREG:
|
case ML_ARMREG:
|
||||||
if (mr[r].reg == (int)INVALID_REG) {
|
if (mr[r].reg == INVALID_REG) {
|
||||||
ERROR_LOG(JIT, "DiscardR: MipsReg had bad ArmReg");
|
ERROR_LOG(JIT, "DiscardR: MipsReg had bad ArmReg");
|
||||||
} else {
|
} else {
|
||||||
// Note that we DO NOT write it back here. That's the whole point of Discard.
|
// Note that we DO NOT write it back here. That's the whole point of Discard.
|
||||||
|
Loading…
Reference in New Issue
Block a user