split more frontend-only information from debug engine core definitions

This commit is contained in:
Ryan Fleury
2024-08-28 17:14:59 -07:00
parent 1c62787758
commit 4439aab721
15 changed files with 1330 additions and 1097 deletions
+3 -3
View File
@@ -67,12 +67,12 @@ main_thread_base_entry_point(void (*entry_point)(CmdLine *cmdline), char **argum
#if defined(FONT_CACHE_H) && !defined(FNT_INIT_MANUAL)
fnt_init();
#endif
#if defined(DBG_ENGINE_CORE_H) && !defined(DF_INIT_MANUAL)
#if defined(DBG_ENGINE_CORE_H) && !defined(D_INIT_MANUAL)
D_StateDeltaHistory *hist = d_state_delta_history_alloc();
d_init(&cmdline, hist);
#endif
#if defined(DBG_GFX_CORE_H) && !defined(DF_GFX_INIT_MANUAL)
df_gfx_init(update_and_render, d_state_delta_history());
#if defined(DBG_FRONTEND_CORE_H) && !defined(DF_INIT_MANUAL)
df_init(update_and_render, d_state_delta_history());
#endif
entry_point(&cmdline);
if(capture)