Skip to content

Commit

Permalink
Reverted -fileopenlog launch arg for MultiVersus
Browse files Browse the repository at this point in the history
  • Loading branch information
TekkaGB committed Sep 9, 2022
1 parent f063d03 commit 4f9753a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Unverum/Setup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public static bool ToA()
{
var key = Registry.LocalMachine.OpenSubKey($@"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Steam App 740130");
if (!String.IsNullOrEmpty(key.GetValue("InstallLocation") as string))
defaultPath = $"{key.GetValue("InstallLocation") as string}{Global.s}Tales of Arise.exe";
defaultPath = $"{key.GetValue("InstallLocation") as string}{Global.s}Arise{Global.s}Binaries{Global.s}Win64{Global.s}Tales of Arise.exe";
}
catch (Exception e)
{
Expand Down
2 changes: 0 additions & 2 deletions Unverum/UI/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -554,8 +554,6 @@ private async void Launch_Click(object sender, RoutedEventArgs e)
UseShellExecute = true,
Verb = "open"
};
if (Global.config.Configs[Global.config.CurrentGame].LauncherOptionIndex == 0 && (GameFilter)GameBox.SelectedIndex == GameFilter.MV)
ps.Arguments = "-fileopenlog";
Process.Start(ps);
}
catch (Exception ex)
Expand Down
2 changes: 1 addition & 1 deletion Unverum/Unverum.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<UseWPF>true</UseWPF>
<ApplicationIcon>Assets\unverum.ico</ApplicationIcon>
<AssemblyName>Unverum</AssemblyName>
<AssemblyVersion>2.3.1.0</AssemblyVersion>
<AssemblyVersion>2.3.2.0</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 4f9753a

Please sign in to comment.