pass --game to goalc (#380)

This commit is contained in:
Matt Dallmeyer 2023-11-08 15:52:33 -08:00 committed by GitHub
parent fcf48ccf84
commit fc70da1922
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -563,15 +563,29 @@ pub async fn open_repl(
let data_folder = get_data_dir(&config_info, &game_name, false)?;
let exec_info = get_exec_location(&config_info, "goalc")?;
let mut command = Command::new("cmd");
command
.args([
"/K",
"start",
&bin_ext("goalc"),
"--proj-path",
&data_folder.to_string_lossy(),
])
.current_dir(exec_info.executable_dir);
if game_name == "jak1" {
command
.args([
"/K",
"start",
&bin_ext("goalc"),
"--proj-path",
&data_folder.to_string_lossy(),
])
.current_dir(exec_info.executable_dir);
} else {
command
.args([
"/K",
"start",
&bin_ext("goalc"),
"--proj-path",
&data_folder.to_string_lossy(),
"--game",
&game_name,
])
.current_dir(exec_info.executable_dir);
}
#[cfg(windows)]
{
command.creation_flags(0x08000000);