aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/TitleScreen.cs
diff options
context:
space:
mode:
authorjtsshieh <[email protected]>2017-08-03 07:57:11 -0400
committerjtsshieh <[email protected]>2017-08-03 07:57:11 -0400
commitd51d7d3a8e91b3e7c10f4e6b9dcb5526d20e2a09 (patch)
treea3f42437f5eebab302d084abed06a73a0e175247 /TimeHACK.Main/TitleScreen.cs
parent9ba27fb843bdd47304e8760e43ff8927d0a60796 (diff)
parent2029bbc59969fd4554022bc23dd6a88a2adc6d19 (diff)
downloadhistacom2-d51d7d3a8e91b3e7c10f4e6b9dcb5526d20e2a09.tar.gz
histacom2-d51d7d3a8e91b3e7c10f4e6b9dcb5526d20e2a09.tar.bz2
histacom2-d51d7d3a8e91b3e7c10f4e6b9dcb5526d20e2a09.zip
Merge branch 'master' of https://github.com/jtsshieh/TimeHACK
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) &&