diff options
| author | AShifter <[email protected]> | 2017-04-13 12:43:13 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-04-13 12:43:13 -0700 |
| commit | 69e90dc5e03f73a36c5ed069d9814b5c2900cc90 (patch) | |
| tree | ee047052f0dae8b05059630cda9ce067469a871c /TimeHACK.Main/Program.cs | |
| parent | 4cc2631a033d2bfb7a7e926f9b17d85862c2eea3 (diff) | |
| parent | 036a986ce1f56e6cda0617e6e574a875b847911b (diff) | |
| download | histacom2-69e90dc5e03f73a36c5ed069d9814b5c2900cc90.tar.gz histacom2-69e90dc5e03f73a36c5ed069d9814b5c2900cc90.tar.bz2 histacom2-69e90dc5e03f73a36c5ed069d9814b5c2900cc90.zip | |
Merge pull request #43 from lempamo/master
WebChat1998 crash works!
Diffstat (limited to 'TimeHACK.Main/Program.cs')
| -rw-r--r-- | TimeHACK.Main/Program.cs | 3 |
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()); } } } |
