diff options
Diffstat (limited to 'Project Ports/Desktop.cs')
| -rw-r--r-- | Project Ports/Desktop.cs | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/Project Ports/Desktop.cs b/Project Ports/Desktop.cs index 26b9e93..506c9d9 100644 --- a/Project Ports/Desktop.cs +++ b/Project Ports/Desktop.cs @@ -49,9 +49,16 @@ namespace Project_Ports private void Desktop_Load(object sender, EventArgs e) { - #if DEBUG - MessageBox.Show("Welcome to the Project Ports Desktop!"); - #endif + hijackLabel.Hide(); + hijackStoryline.Hide(); + hijackScreen.Hide(); + if(Properties.Settings.Default.hijacked == true) + { + hijackLabel.Show(); + hijackStoryline.Show(); + hijackScreen.Show(); + + } dclock.Start(); } |
