From 6e98743d01a4fc9ace8f7b1d9509d67fe967c646 Mon Sep 17 00:00:00 2001 From: nyyu Date: Sat, 31 May 2025 20:52:44 +0200 Subject: [PATCH] fix: default champs dir --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index c0dca42..3bc6528 100644 --- a/src/main.rs +++ b/src/main.rs @@ -46,7 +46,7 @@ pub struct ChampInfo { const USER_AGENT_VALUE: &str = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:139.0) Gecko/20100101 Firefox/139.0"; -const DEFAULT_LOL_CHAMPS_DIR: &str = ".\\champs"; +const DEFAULT_LOL_CHAMPS_DIR: &str = "./champs"; #[cfg(target_os = "windows")] const REG_KEY_LOL_RADS: &str = r"SOFTWARE\WOW6432Node\Riot Games\RADS"; #[cfg(target_os = "windows")]