This commit is contained in:
2024-07-30 16:29:13 +02:00
parent 812d8808d6
commit 2a7ceee990

View File

@@ -469,7 +469,7 @@ fn launch(file_path: &PathBuf, args: &str) {
.wait() .wait()
.expect("Failed to wait for the game process to finish"); .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() { if !exit_status.success() {
misc::stdin(); misc::stdin();
} }
@@ -498,7 +498,7 @@ fn launch(file_path: &PathBuf, args: &str) {
.expect("Failed to wait for the game process to finish") .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() { if !exit_status.success() {
misc::stdin(); misc::stdin();
} }