aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/Program.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-04-13 14:04:41 -0400
committerlempamo <[email protected]>2017-04-13 14:04:41 -0400
commit036a986ce1f56e6cda0617e6e574a875b847911b (patch)
treeee047052f0dae8b05059630cda9ce067469a871c /TimeHACK.Main/Program.cs
parentf1e0c8f75de4a5086ff955789e9397696df25199 (diff)
downloadhistacom2-036a986ce1f56e6cda0617e6e574a875b847911b.tar.gz
histacom2-036a986ce1f56e6cda0617e6e574a875b847911b.tar.bz2
histacom2-036a986ce1f56e6cda0617e6e574a875b847911b.zip
WebChat1998 crash works!
Diffstat (limited to 'TimeHACK.Main/Program.cs')
-rw-r--r--TimeHACK.Main/Program.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/TimeHACK.Main/Program.cs b/TimeHACK.Main/Program.cs
index 5c3d46d..1c66b45 100644
--- a/TimeHACK.Main/Program.cs
+++ b/TimeHACK.Main/Program.cs
@@ -13,6 +13,7 @@ namespace TimeHACK
{
internal static bool nightly = true;
internal static string gameID;
+ internal static TitleScreen title = null;
/// <summary>
/// The main entry point for the application.
@@ -43,7 +44,7 @@ namespace TimeHACK
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new TitleScreen());
+ Application.Run(title = new TitleScreen());
}
}
}