aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/TitleScreen.cs
diff options
context:
space:
mode:
Diffstat (limited to 'TimeHACK.Main/TitleScreen.cs')
-rw-r--r--TimeHACK.Main/TitleScreen.cs15
1 files changed, 1 insertions, 14 deletions
diff --git a/TimeHACK.Main/TitleScreen.cs b/TimeHACK.Main/TitleScreen.cs
index 6ee2ef1..90cd0af 100644
--- a/TimeHACK.Main/TitleScreen.cs
+++ b/TimeHACK.Main/TitleScreen.cs
@@ -56,10 +56,7 @@ namespace TimeHACK
public void StartGame()
{
//TODO: You may want to handle story stuff to decide what OS to boot here.
- if (Convert.ToInt32(VM_Width.Text) == 1337 && Convert.ToInt32(VM_Height.Text) == 1337)
- {
- leet();
- }
+ if (Convert.ToInt32(VM_Width.Text) == 1337 && Convert.ToInt32(VM_Height.Text) == 1337) leet();
else
{
// Time to decide which OS to start up!
@@ -107,16 +104,6 @@ namespace TimeHACK
}
}
- void closeButton(object sender, MouseEventArgs e)
- {
- Close();
- }
-
- private void closebutton_Click(object sender, EventArgs e)
- {
- Close();
- }
-
private void VM_WidthHeight_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) &&