0
0
Fork 0
mirror of https://github.com/ZDoom/qzdoom.git synced 2025-04-22 01:30:56 +00:00

- fix compile error

This commit is contained in:
Magnus Norddahl 2018-11-27 17:02:51 +01:00
parent 73819d45b7
commit 9dbb1d77ce

View file

@ -42,7 +42,7 @@ void JitCompiler::EmitVtbl(const VMOP *op)
void JitCompiler::EmitCALL()
{
EmitVMCall(regA[A]);
EmitVMCall(regA[A], nullptr);
pc += C; // Skip RESULTs
}