mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-01-18 15:11:46 +00:00
- fix mul using wrong instruction
This commit is contained in:
parent
25e7042bc5
commit
a5719e73eb
1 changed files with 2 additions and 2 deletions
|
@ -1214,12 +1214,12 @@ private:
|
|||
|
||||
void EmitMUL_RR()
|
||||
{
|
||||
BINARY_OP_INT(mul, regD[a], regD[B], regD[C]);
|
||||
BINARY_OP_INT(imul, regD[a], regD[B], regD[C]);
|
||||
}
|
||||
|
||||
void EmitMUL_RK()
|
||||
{
|
||||
BINARY_OP_INT(mul, regD[a], regD[B], konstd[C]);
|
||||
BINARY_OP_INT(imul, regD[a], regD[B], konstd[C]);
|
||||
}
|
||||
|
||||
void EmitDIV_RR()
|
||||
|
|
Loading…
Reference in a new issue