Revert "more msgs -> cmds & df entity elimination progress"

This reverts commit 9968c6e491.
This commit is contained in:
Ryan Fleury
2024-09-07 14:48:42 -07:00
parent cccbd265ff
commit 5ffab0439b
6 changed files with 181 additions and 412 deletions
+4 -4
View File
@@ -799,7 +799,7 @@ entry_point(CmdLine *cmd_line)
fnt_init();
D_StateDeltaHistory *hist = d_state_delta_history_alloc();
d_init(cmd_line, hist);
df_init(cmd_line);
df_init();
}
//- rjf: setup initial target from command line args
@@ -950,21 +950,21 @@ entry_point(CmdLine *cmd_line)
if(auto_run)
{
auto_run = 0;
d_msg(D_MsgKind_LaunchAndRun);
d_cmd(D_CmdKind_LaunchAndRun);
}
//- rjf: auto step
if(auto_step)
{
auto_step = 0;
d_msg(D_MsgKind_StepInto);
d_cmd(D_CmdKind_StepInto);
}
//- rjf: jit attach
if(jit_attach)
{
jit_attach = 0;
d_msg(D_MsgKind_Attach, .pid = jit_pid);
d_cmd(D_CmdKind_Attach, .id = jit_pid);
}
}
}