Rednukem: fix ifvare instruction

This commit is contained in:
nukeykt 2020-02-08 03:51:34 +09:00 committed by Christoph Oelckers
parent 9c9638a765
commit 88eacbcc1b

View file

@ -2719,7 +2719,7 @@ GAMEEXEC_STATIC void VM_Execute(native_t loop)
case CON_IFVARE: case CON_IFVARE:
insptr++; insptr++;
tw = Gv_GetVar(*insptr++); tw = Gv_GetVar(*insptr++);
VM_CONDITIONAL(tw >= *insptr); VM_CONDITIONAL(tw == *insptr);
continue; continue;
case CON_IFVARVARE: case CON_IFVARVARE: