mirror of
https://github.com/EpicMorg/UniversalValveToolbox.git
synced 2025-01-13 15:18:14 +03:00
fixed run args
This commit is contained in:
parent
79e43d9127
commit
b3ec2ff835
@ -316,7 +316,7 @@ namespace UniversalValveToolbox {
|
||||
if (RUN_PROJECT_ID.Equals(selectItem.Tag) && SelectedProject != null) {
|
||||
var pathEngineBin = Path.Combine(SteamPathsUtil.GetSteamAppManifestDataById(SelectedEngine.Appid).Path, SelectedEngine.Bin);
|
||||
|
||||
Process.Start(pathEngineBin, $"-game {SelectedProject.Path} {SelectedProject.Args}");
|
||||
Process.Start(pathEngineBin, $"-game \"{SelectedProject.Path}\" {SelectedProject.Args}");
|
||||
}
|
||||
|
||||
var selectedTool = SelectedEngine.Tools.FirstOrDefault(tool => tool.Name == selectItemText);
|
||||
@ -327,7 +327,7 @@ namespace UniversalValveToolbox {
|
||||
var toolPath = Path.Combine(selectedEnginePath, selectedTool.Bin);
|
||||
|
||||
if (File.Exists(toolPath))
|
||||
Process.Start(toolPath, selectedTool.Args);
|
||||
Process.Start(toolPath, $"{selectedTool.Args} -game \"{SelectedProject.Path}\"");
|
||||
else
|
||||
MessageBox.Show($"\"{selectedTool.Name}\" no found.\n{toolPath}", "Message", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user