From 0a498f0c64b628081018bc6d31f7504afb2102af Mon Sep 17 00:00:00 2001 From: Paul Dino Jones Date: Thu, 16 Jan 2025 22:22:49 -0500 Subject: [PATCH] move logging around to make output a little cleaner --- src/monocoque/gameloop/gameloop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/monocoque/gameloop/gameloop.c b/src/monocoque/gameloop/gameloop.c index 15537be..29fcd8a 100644 --- a/src/monocoque/gameloop/gameloop.c +++ b/src/monocoque/gameloop/gameloop.c @@ -537,9 +537,9 @@ void cb(uv_poll_t* handle, int status, int events) if(f->releasing == false && doui == false) { appstate--; - slogi("User requested stop appstate is now %i", appstate); - fprintf(stdout, "User requested stop appstate is now %i\n", appstate); + fprintf(stdout, "\nUser requested stop appstate is now %i\n", appstate); fflush(stdout); + slogi("User requested stop appstate is now %i", appstate); } }