dont over-ambitiously consider the unwind cache up-to-date if some thread unwinds failed

This commit is contained in:
Ryan Fleury
2024-03-17 12:21:57 -07:00
parent 808d26684e
commit c2709d78b8
+5 -2
View File
@@ -6931,8 +6931,11 @@ df_core_begin_frame(Arena *arena, DF_CmdList *cmds, F32 dt)
break;
}
}
df_state->unwind_cache_memgen_idx = new_memgen_idx;
df_state->unwind_cache_reggen_idx = new_reggen_idx;
if(good)
{
df_state->unwind_cache_memgen_idx = new_memgen_idx;
df_state->unwind_cache_reggen_idx = new_reggen_idx;
}
}
//- rjf: clear tls base cache