mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 19:20:46 +00:00
Rednukem: fix ifvare instruction
This commit is contained in:
parent
9c9638a765
commit
88eacbcc1b
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue