From 2a7ceee9901b05d80210c201acf619ed50c84659 Mon Sep 17 00:00:00 2001 From: mxve <68632137+mxve@users.noreply.github.com> Date: Tue, 30 Jul 2024 16:29:13 +0200 Subject: [PATCH] tweakin --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 3ac7c79..2ea3706 100644 --- a/src/main.rs +++ b/src/main.rs @@ -469,7 +469,7 @@ fn launch(file_path: &PathBuf, args: &str) { .wait() .expect("Failed to wait for the game process to finish"); - crate::println_error!("Game exited with status: {}", exit_status); + crate::println_error!("Game exited with {}", exit_status); if !exit_status.success() { misc::stdin(); } @@ -498,7 +498,7 @@ fn launch(file_path: &PathBuf, args: &str) { .expect("Failed to wait for the game process to finish") }; - crate::println_error!("Game exited with status: {}", exit_status); + crate::println_error!("Game exited with {}", exit_status); if !exit_status.success() { misc::stdin(); }