Actually fixed skipped instructions after use (previous commit didn't include it for some reason)

This commit is contained in:
2026-03-16 19:20:59 +11:00
parent 1acc20db82
commit a0a8cb69cc

View File

@@ -705,7 +705,7 @@ GroundValue interpretGroundProgram(GroundProgram* in, GroundScope* inScope) {
return gv;
}
if (ci != currentInstruction) {
i = currentInstruction;
i = ci;
}
currentInstruction++;
}