mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-14 14:11:15 +00:00
looks like the interpreter was broken all the time. Didn't anyone
notice?
This commit is contained in:
parent
fc244c97ef
commit
6327f1ce47
1 changed files with 1 additions and 1 deletions
|
@ -852,7 +852,7 @@ nextInstruction2:
|
||||||
opStack--;
|
opStack--;
|
||||||
goto nextInstruction;
|
goto nextInstruction;
|
||||||
case OP_BCOM:
|
case OP_BCOM:
|
||||||
opStack[-1] = ~ ((unsigned)r0);
|
*opStack = ~ ((unsigned)r0);
|
||||||
goto nextInstruction;
|
goto nextInstruction;
|
||||||
|
|
||||||
case OP_LSH:
|
case OP_LSH:
|
||||||
|
|
Loading…
Reference in a new issue