diff options
| -rw-r--r-- | Project Ports/Desktop.cs | 3 | ||||
| -rw-r--r-- | Project Ports/MainMenu.cs | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Project Ports/Desktop.cs b/Project Ports/Desktop.cs index 2697ee6..1d531c8 100644 --- a/Project Ports/Desktop.cs +++ b/Project Ports/Desktop.cs @@ -50,9 +50,6 @@ namespace Project_Ports private void Desktop_Load(object sender, EventArgs e) { - #if DEBUG - MessageBox.Show("You have set the build to \"Debug\" there are some features that is disabled in this build."); - #endif dclock.Start(); desktopWatermark.Text = "Project: Ports " + Properties.Settings.Default.version + Environment.NewLine + "Working Progress"; appMenu.Hide(); diff --git a/Project Ports/MainMenu.cs b/Project Ports/MainMenu.cs index d9d329b..a1eb5aa 100644 --- a/Project Ports/MainMenu.cs +++ b/Project Ports/MainMenu.cs @@ -70,6 +70,9 @@ namespace Project_Ports private void MainMenu_Load(object sender, EventArgs e) { + #if DEBUG + MessageBox.Show("You have set the build to \"Debug\". There are some features that is disabled in debug builds."); + #endif portsVersion.Text = Properties.Settings.Default.version; } |
