From 470bc50ad592a127361fbb2d96a4a8de88d52f54 Mon Sep 17 00:00:00 2001 From: mxve <68632137+mxve@users.noreply.github.com> Date: Fri, 30 Aug 2024 08:35:50 +0200 Subject: [PATCH] replace error print --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index ed662db..2fa3c71 100644 --- a/src/main.rs +++ b/src/main.rs @@ -70,7 +70,7 @@ fn create_shortcut(path: &Path, target: &Path, icon: String, args: String) { #[cfg(windows)] fn setup_client_links(game: &Game, game_dir: &Path) { if game.client.len() > 1 { - crate::println_error!("Multiple clients installed, use the shortcuts (launch-.lnk in the game directory or on the desktop) to launch a specific client."); + println!("Multiple clients installed, use the shortcuts (launch-.lnk in the game directory or on the desktop) to launch a specific client."); } for c in game.client.iter() {