Skip to content

Commit

Permalink
Add message for when xenia isn't open lol
Browse files Browse the repository at this point in the history
  • Loading branch information
Labreezy committed Jul 20, 2021
1 parent e502d03 commit bfaaacf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions UpgradeRemover06/MainWindow.xaml.cs
Expand Up @@ -32,6 +32,11 @@ public MainWindow()
mu = new MemoryUtils();
bool success = mu.tryOpenXenia();
Debug.WriteLineIf(success, "Process opened!");
if (!success)
{
MessageBox.Show("Open xenia first!");
Environment.Exit(1);
}
Debug.WriteLine("hello o/");


Expand Down

0 comments on commit bfaaacf

Please sign in to comment.