aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win95
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-10-30 22:24:16 -0400
committerlempamo <[email protected]>2017-10-30 22:24:16 -0400
commit49e30d88787458779ec80a7cbc97d55a09bf67c9 (patch)
tree0c9c7c255fc75ec0539e66e6400667264228775f /Histacom2/OS/Win95
parent7f58311cc5c0080764174d342c96d4a14b0662e3 (diff)
downloadhistacom2-49e30d88787458779ec80a7cbc97d55a09bf67c9.tar.gz
histacom2-49e30d88787458779ec80a7cbc97d55a09bf67c9.tar.bz2
histacom2-49e30d88787458779ec80a7cbc97d55a09bf67c9.zip
webchat 99 will now open in the start menu
Diffstat (limited to 'Histacom2/OS/Win95')
-rw-r--r--Histacom2/OS/Win95/Win95.cs2
-rw-r--r--Histacom2/OS/Win95/Win95Apps/Story/Hack2.cs2
2 files changed, 3 insertions, 1 deletions
diff --git a/Histacom2/OS/Win95/Win95.cs b/Histacom2/OS/Win95/Win95.cs
index 1299617..0e2ac3b 100644
--- a/Histacom2/OS/Win95/Win95.cs
+++ b/Histacom2/OS/Win95/Win95.cs
@@ -114,7 +114,7 @@ namespace Histacom2.OS.Win95
this.BringToFront();
//Check if it is the first time
- if (CurrentSave.FTime95 == false)
+ if (!CurrentSave.FTime95)
{
CurrentSave.FTime95 = true;
SaveGame();
diff --git a/Histacom2/OS/Win95/Win95Apps/Story/Hack2.cs b/Histacom2/OS/Win95/Win95Apps/Story/Hack2.cs
index 577b38a..9dcebfc 100644
--- a/Histacom2/OS/Win95/Win95Apps/Story/Hack2.cs
+++ b/Histacom2/OS/Win95/Win95Apps/Story/Hack2.cs
@@ -10,6 +10,7 @@ namespace Histacom2.OS.Win95.Win95Apps.Story
{
public class Hack2 : object
{
+ public static bool Upgraded = false;
static WindowManager wm = new WindowManager();
public static async void StartObjective()
@@ -273,6 +274,7 @@ namespace Histacom2.OS.Win95.Win95Apps.Story
SaveSystem.CurrentSave.CurrentOS = "98";
SaveSystem.currentTheme = new Default98Theme();
SaveSystem.CurrentSave.ThemeName = "default98";
+ Upgraded = true;
TitleScreen.frm95.distort.ParentForm.Close();
foreach (Form frm in Application.OpenForms) if (frm is WinClassic) frm.Close();
Program.title.StartGame();