mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-16 09:31:14 +00:00
- fix swapped operands in EmitSUBF_KR
This commit is contained in:
parent
ede8c6d86b
commit
db78d02d79
1 changed files with 2 additions and 2 deletions
|
@ -1681,9 +1681,9 @@ private:
|
|||
void EmitSUBF_KR()
|
||||
{
|
||||
auto tmp = cc.newIntPtr();
|
||||
cc.mov(tmp, ToMemAddress(&konstf[C]));
|
||||
cc.mov(tmp, ToMemAddress(&konstf[B]));
|
||||
cc.movsd(regF[a], asmjit::x86::qword_ptr(tmp));
|
||||
cc.subsd(regF[a], regF[B]);
|
||||
cc.subsd(regF[a], regF[C]);
|
||||
}
|
||||
|
||||
void EmitMULF_RR()
|
||||
|
|
Loading…
Reference in a new issue