1
0
Fork 0

don't show steam launch step on windows OS

This commit is contained in:
Kim, Jimin 2022-02-08 21:02:22 +09:00
parent 67d55d1175
commit a910f2a19e

View file

@ -40,5 +40,12 @@ pub async fn remove(game_path: String) -> Result<(), RemoveErr> {
}
}
return Err(RemoveErr::LaunchOptionNotRemoved);
match std::env::consts::OS {
"macos" | "linux" => {
return Err(RemoveErr::LaunchOptionNotRemoved);
}
_ => {
return Ok(());
}
}
}