Skip to content

Commit

Permalink
Version 2.0.0 Preview 4
Browse files Browse the repository at this point in the history
  • Loading branch information
HimDek committed Nov 6, 2021
1 parent 7740c74 commit 2afb9bb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions yuzu-Early-Access-Launcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ static class yuzu_Early_Access_Launcher
{
static readonly Mutex mutex = new Mutex(true, "{29a9daa1-8bad-45c8-a05c-0d6724836e59}");
[STAThread]
static void Main()
static int Main()
{
String theme = "", version = "2.0.0-Preview-3", UserProfile = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), path = Path.GetDirectoryName(Application.ExecutablePath);
String theme = "", version = "2.0.0-Preview-4", UserProfile = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), path = Path.GetDirectoryName(Application.ExecutablePath);
Directory.SetCurrentDirectory(path);

if (mutex.WaitOne(TimeSpan.Zero, true))
Expand Down Expand Up @@ -81,6 +81,7 @@ static void Main()
IntPtr.Zero,
IntPtr.Zero);
}
return 0;
}
}
}

0 comments on commit 2afb9bb

Please sign in to comment.