mirror of https://github.com/mgba-emu/mgba.git
ARM7: Fix typo that invoked undefined behavior
This commit is contained in:
parent
1dceadbbf5
commit
7e6f9f2092
|
@ -106,7 +106,7 @@
|
|||
info->operandFormat >>= 8; \
|
||||
} else if (SKIPPED == 2) { \
|
||||
info->op2 = info->op3; \
|
||||
info->operandFormat |= info->operandFormat >>= 8; \
|
||||
info->operandFormat |= info->operandFormat >> 8; \
|
||||
info->operandFormat &= ~ARM_OPERAND_3; \
|
||||
} \
|
||||
if (info->op1.reg == ARM_PC) { \
|
||||
|
|
Loading…
Reference in New Issue