summaryrefslogtreecommitdiff
path: root/editor/main.cpp
diff options
context:
space:
mode:
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;