more progress in df cmds -> msgs

This commit is contained in:
Ryan Fleury
2024-09-01 15:49:06 -07:00
parent 6ead03ac17
commit 06f65857db
8 changed files with 137 additions and 38 deletions
+1 -8
View File
@@ -671,7 +671,6 @@ internal B32
frame(void)
{
ProfBeginFunction();
B32 should_quit = 0;
Temp scratch = scratch_begin(0, 0);
//- rjf: begin logging
@@ -700,15 +699,9 @@ frame(void)
}
}
//- rjf: quit if no windows are left
if(df_state->first_window == 0)
{
should_quit = 1;
}
scratch_end(scratch);
ProfEnd();
return should_quit;
return df_state->quit;
}
////////////////////////////////