From a0a8cb69cce4a2fb32952f317388b9a9cf68d2c2 Mon Sep 17 00:00:00 2001 From: DiamondNether90 Date: Mon, 16 Mar 2026 19:20:59 +1100 Subject: [PATCH] Actually fixed skipped instructions after use (previous commit didn't include it for some reason) --- src/interpreter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpreter.c b/src/interpreter.c index 17c4169..025ac81 100644 --- a/src/interpreter.c +++ b/src/interpreter.c @@ -705,7 +705,7 @@ GroundValue interpretGroundProgram(GroundProgram* in, GroundScope* inScope) { return gv; } if (ci != currentInstruction) { - i = currentInstruction; + i = ci; } currentInstruction++; }