mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 23:32:02 +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()
|
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()
|
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()
|
void EmitDIV_RR()
|
||||||
|
|
Loading…
Reference in a new issue