aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95.cs
diff options
context:
space:
mode:
authorJayXKanz666 <[email protected]>2017-07-13 02:22:31 +0200
committerJayXKanz666 <[email protected]>2017-07-13 02:22:31 +0200
commitb4730c9eff5a05ae0e8b2f122b7b0929e66e0640 (patch)
tree6378992ecc461577dc2694c6429cb872517f3f39 /TimeHACK.Main/OS/Win95/Win95.cs
parent09ce8069a909b465f2c8c9da02df0658ffe88dc5 (diff)
parent884a0a8c076804dee3fe4b0d9ff8c7690ec7a7c6 (diff)
downloadhistacom2-b4730c9eff5a05ae0e8b2f122b7b0929e66e0640.tar.gz
histacom2-b4730c9eff5a05ae0e8b2f122b7b0929e66e0640.tar.bz2
histacom2-b4730c9eff5a05ae0e8b2f122b7b0929e66e0640.zip
Merge remote-tracking branch 'refs/remotes/TimeHACKDevs/master'
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95.cs4
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();