mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-26 14:01:45 +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()
|
||||
{
|
||||
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)));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue