mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-13 13:50:59 +00:00
- fix bug in LKF_R
This commit is contained in:
parent
7e7bce4965
commit
ce9925d257
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ void JitCompiler::EmitLK_R()
|
||||||
void JitCompiler::EmitLKF_R()
|
void JitCompiler::EmitLKF_R()
|
||||||
{
|
{
|
||||||
auto tmp = cc.newIntPtr();
|
auto tmp = cc.newIntPtr();
|
||||||
cc.mov(tmp, ToMemAddress(konstf + BC));
|
cc.mov(tmp, ToMemAddress(konstf));
|
||||||
cc.movsd(regF[A], asmjit::x86::qword_ptr(tmp, regD[B], 3, C * sizeof(double)));
|
cc.movsd(regF[A], asmjit::x86::qword_ptr(tmp, regD[B], 3, C * sizeof(double)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue