Skip to content

Commit

Permalink
#9 Full exe path
Browse files Browse the repository at this point in the history
  • Loading branch information
lahm86 committed Nov 21, 2022
1 parent f9b718a commit 36c9c44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion tomb3_ConfigTool/Models/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Windows;
using System.Windows.Input;
Expand Down Expand Up @@ -219,7 +220,7 @@ private void LaunchGameExe(string arguments = null)

try
{
ProcessUtils.Start(Tomb3Config.ExecutableName, arguments);
ProcessUtils.Start(Path.GetFullPath(Tomb3Config.ExecutableName), arguments);
}
catch (Exception e)
{
Expand Down
6 changes: 3 additions & 3 deletions tomb3_ConfigTool/tomb3_ConfigTool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>

<Version>1.1.0</Version>
<AssemblyVersion>1.1.0</AssemblyVersion>
<FileVersion>1.1.0</FileVersion>
<Version>1.2.0</Version>
<AssemblyVersion>1.2.0</AssemblyVersion>
<FileVersion>1.2.0</FileVersion>
<Product>tomb3 Configuration Tool</Product>
<Copyright>Copyright © Tomb Raider Community 2022</Copyright>
</PropertyGroup>
Expand Down

0 comments on commit 36c9c44

Please sign in to comment.