aboutsummaryrefslogtreecommitdiff
path: root/Project Ports/MainMenu.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Project Ports/MainMenu.cs')
-rw-r--r--Project Ports/MainMenu.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Project Ports/MainMenu.cs b/Project Ports/MainMenu.cs
index 180b95b..357586a 100644
--- a/Project Ports/MainMenu.cs
+++ b/Project Ports/MainMenu.cs
@@ -43,10 +43,10 @@ namespace Project_Ports
private void btnPlay_Click(object sender, EventArgs e)
{
- Desktop desktop = new Desktop();
+ Desktop desktop = new Desktop();
+ Boot boot = new Boot();
#if DEBUG
Properties.Settings.Default.hijacked = false;
- desktop.Show();
#endif
if (Properties.Settings.Default.hijacked == true)
{
@@ -55,7 +55,7 @@ namespace Project_Ports
}
else
{
- desktop.Show();
+ boot.Show();
}
}