capture freezeGC in CPanic

This commit is contained in:
2023-09-05 02:23:31 -05:00
committed by cpunch
parent ffff01e9d1
commit 6701a63a63
3 changed files with 3 additions and 0 deletions

View File

@@ -122,6 +122,7 @@ void cosmoV_throw(CState *state)
if (state->panic) {
state->top = state->panic->top;
state->frameCount = state->panic->frameCount;
state->freezeGC = state->panic->freezeGC;
cosmoV_pushValue(state, val);
longjmp(state->panic->jmp, 1);
} else {