aboutsummaryrefslogtreecommitdiff
path: root/Project Ports
diff options
context:
space:
mode:
authorAndrew <alee14498@gmail.com>2018-08-27 16:29:07 -0400
committerAndrew <alee14498@gmail.com>2018-08-27 16:29:07 -0400
commit30361aadd406e8d33671aea223b3e0a119a1d503 (patch)
tree56475b216f29b04668b34ef9c6b4cc7a7e4c2809 /Project Ports
parentd515e39997ce08f9ea58f6113a648c0fc0c93322 (diff)
downloadProject-Silicon-30361aadd406e8d33671aea223b3e0a119a1d503.tar.gz
Project-Silicon-30361aadd406e8d33671aea223b3e0a119a1d503.tar.bz2
Project-Silicon-30361aadd406e8d33671aea223b3e0a119a1d503.zip
Moved the debug message to launcher
Diffstat (limited to 'Project Ports')
-rw-r--r--Project Ports/Desktop.cs3
-rw-r--r--Project Ports/MainMenu.cs3
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;
}