move logging around to make output a little cleaner

This commit is contained in:
Paul Dino Jones 2025-01-16 22:22:49 -05:00
parent 13d7a03acb
commit 0a498f0c64
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}