Linting & prettier

Bump version
This commit is contained in:
Thoronium
2023-04-26 14:51:19 -06:00
parent e38467f054
commit 6e711073ad
8 changed files with 38 additions and 35 deletions

View File

@@ -107,9 +107,9 @@ async fn parse_args(inp: &Vec<String>) -> Result<Args, ArgsError> {
if game_path.is_some() {
if args.value_of("non-elevated-game")? {
system_helpers::run_un_elevated(game_path.unwrap().to_string(), Some(game_args))
system_helpers::run_un_elevated(game_path.unwrap(), Some(game_args))
} else {
system_helpers::run_program(game_path.unwrap().to_string(), Some(game_args))
system_helpers::run_program(game_path.unwrap(), Some(game_args))
}
}
}