mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40: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:
|
||||
insptr++;
|
||||
tw = Gv_GetVar(*insptr++);
|
||||
VM_CONDITIONAL(tw >= *insptr);
|
||||
VM_CONDITIONAL(tw == *insptr);
|
||||
continue;
|
||||
|
||||
case CON_IFVARVARE:
|
||||
|
|
Loading…
Reference in a new issue