mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[FAST486]
Put the conditional expression in parenthesis so that the addition happens after it. svn path=/branches/ntvdm/; revision=61063
This commit is contained in:
parent
37b16fec31
commit
9c999826e1
1 changed files with 2 additions and 2 deletions
|
@ -4919,8 +4919,8 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeXlat)
|
|||
/* Read a byte from DS:[(E)BX + AL] */
|
||||
if (!Fast486ReadMemory(State,
|
||||
FAST486_REG_DS,
|
||||
AddressSize ? State->GeneralRegs[FAST486_REG_EBX].Long
|
||||
: State->GeneralRegs[FAST486_REG_EBX].LowWord
|
||||
(AddressSize ? State->GeneralRegs[FAST486_REG_EBX].Long
|
||||
: State->GeneralRegs[FAST486_REG_EBX].LowWord)
|
||||
+ State->GeneralRegs[FAST486_REG_EAX].LowByte,
|
||||
FALSE,
|
||||
&Value,
|
||||
|
|
Loading…
Reference in a new issue