mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[SOFT386]
Fix previous fix. svn path=/branches/ntvdm/; revision=60695
This commit is contained in:
parent
fb5036618e
commit
3041ad0330
1 changed files with 1 additions and 1 deletions
|
@ -1304,7 +1304,7 @@ SOFT386_OPCODE_HANDLER(Soft386OpcodeGroupF7)
|
|||
}
|
||||
else
|
||||
{
|
||||
LONG Result = (LONG)Value * (LONG)((SHORT)State->GeneralRegs[SOFT386_REG_EAX].LowWord);
|
||||
LONG Result = (LONG)((SHORT)Value) * (LONG)((SHORT)State->GeneralRegs[SOFT386_REG_EAX].LowWord);
|
||||
|
||||
/* Update the flags */
|
||||
State->Flags.Cf = State->Flags.Of =
|
||||
|
|
Loading…
Reference in a new issue