summaryrefslogtreecommitdiff
path: root/editor/main.cpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2023-12-05 15:27:16 -0500
committerJonathan Bradley <jcb@pikum.xyz>2023-12-05 20:39:07 -0500
commitdca5d9089086c9a845e10cc26b1966f237975a64 (patch)
treedd67070121c3cfd664aaebbbc02f9e1b639c3894 /editor/main.cpp
parentbbde646e46f8993fcf1f30ead6b7376f1670f389 (diff)
editor cleanup
Diffstat (limited to 'editor/main.cpp')
-rw-r--r--editor/main.cpp6
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;