diff --git a/src/games/honkai/game.rs b/src/games/honkai/game.rs index 0a4afc0..79f60c8 100644 --- a/src/games/honkai/game.rs +++ b/src/games/honkai/game.rs @@ -94,7 +94,7 @@ pub fn run() -> anyhow::Result<()> { windows_command += " "; } - windows_command += &format!("'{}/jadeite.exe' 'Z:\\{}/BH3.exe' ", folders.patch.to_string_lossy(), folders.game.to_string_lossy()); + windows_command += &format!("'{}/jadeite.exe' 'Z:\\{}/BH3.exe' -- ", folders.patch.to_string_lossy(), folders.game.to_string_lossy()); if config.game.wine.borderless { windows_command += "-screen-fullscreen 0 -popupwindow "; diff --git a/src/games/star_rail/game.rs b/src/games/star_rail/game.rs index baa302b..4021edc 100644 --- a/src/games/star_rail/game.rs +++ b/src/games/star_rail/game.rs @@ -95,7 +95,7 @@ pub fn run() -> anyhow::Result<()> { windows_command += " "; } - windows_command += &format!("'{}/jadeite.exe' 'Z:\\{}/StarRail.exe' ", folders.patch.to_string_lossy(), folders.game.to_string_lossy()); + windows_command += &format!("'{}/jadeite.exe' 'Z:\\{}/StarRail.exe' -- ", folders.patch.to_string_lossy(), folders.game.to_string_lossy()); if config.game.wine.borderless { windows_command += "-screen-fullscreen 0 -popupwindow ";