mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-04 12:58:41 +00:00
Revert "more msgs -> cmds & df entity elimination progress"
This reverts commit 9968c6e491.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user