mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-20 18:42:17 +00:00
- fix mul using wrong instruction
This commit is contained in:
parent
c46a4d4483
commit
708362b31f
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