mirror of https://github.com/mgba-emu/mgba.git
Use LE instead of GE where appropriate
This commit is contained in:
parent
dd4e6b0ce1
commit
2c8786ae4c
|
@ -190,7 +190,7 @@ void ARMStep(struct ARMCore* cpu) {
|
|||
}
|
||||
break;
|
||||
case 0xD:
|
||||
if (!ARM_COND_GE) {
|
||||
if (!ARM_COND_LE) {
|
||||
cpu->cycles += 1 + cpu->memory->activePrefetchCycles32;
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue