diff options
| author | lempamo <[email protected]> | 2017-07-12 19:18:43 -0500 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-12 19:18:43 -0500 |
| commit | 884a0a8c076804dee3fe4b0d9ff8c7690ec7a7c6 (patch) | |
| tree | 6378992ecc461577dc2694c6429cb872517f3f39 /TimeHACK.Main/OS/Win95/Win95.cs | |
| parent | a0070c6fe19d391f06cc7ce1e2302ed584abe269 (diff) | |
| download | histacom2-884a0a8c076804dee3fe4b0d9ff8c7690ec7a7c6.tar.gz histacom2-884a0a8c076804dee3fe4b0d9ff8c7690ec7a7c6.tar.bz2 histacom2-884a0a8c076804dee3fe4b0d9ff8c7690ec7a7c6.zip | |
fixed up hack2 a bit
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs index 6cae472..442091e 100644 --- a/TimeHACK.Main/OS/Win95/Win95.cs +++ b/TimeHACK.Main/OS/Win95/Win95.cs @@ -20,6 +20,7 @@ namespace TimeHACK.OS.Win95 public List<WinClassic> nonimportantapps = new List<WinClassic>(); public WinClassic webchat; public WinClassic ie; + public WinClassicTimeDistorter distort; public TaskBarController tb = new TaskBarController(); public int currentappcount = 0; @@ -429,7 +430,8 @@ namespace TimeHACK.OS.Win95 private void TimeDistorterToolStripMenuItem_Click(object sender, EventArgs e) { - WinClassic app = wm.StartWin95(new WinClassicTimeDistorter("1998", "1999", 160, Hack2.StartObjective), "Time Distorter", null, false, true); + distort = new WinClassicTimeDistorter("1998", "1999", 160, Hack2.StartObjective); + WinClassic app = wm.StartWin95(distort, "Time Distorter", null, false, true); AddTaskBarItem(app, app.Tag.ToString(), "Time Distorter", null); app.BringToFront(); startmenu.Hide(); |
