diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-12-05 15:27:16 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-12-05 20:39:07 -0500 |
| commit | dca5d9089086c9a845e10cc26b1966f237975a64 (patch) | |
| tree | dd67070121c3cfd664aaebbbc02f9e1b639c3894 /editor/main.cpp | |
| parent | bbde646e46f8993fcf1f30ead6b7376f1670f389 (diff) | |
editor cleanup
Diffstat (limited to 'editor/main.cpp')
| -rw-r--r-- | editor/main.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/editor/main.cpp b/editor/main.cpp index c0cc7c0..ce689e8 100644 --- a/editor/main.cpp +++ b/editor/main.cpp @@ -14,9 +14,13 @@ void signal_handler(int signal_num) { int main() { signal(SIGTERM, signal_handler); - fprintf(stdout, "PKE_EDITOR ENTERING\n"); + fflush(stdout); + fflush(stderr); + fprintf(stdout, "\rPKE_EDITOR ENTERING\n"); + fprintf(stderr, "\r"); // setup { + pkeSettings.isSimulationPaused = true; pkeSettings.isShowingEditor = true; pkePlugin.OnInit = PkeEditor_Init; pkePlugin.OnTick = PkeEditor_Tick; |
