aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-08-27 08:43:22 -0600
committerAShifter <[email protected]>2017-08-27 08:43:22 -0600
commitf8e657ddbaf3654f102676a0b51e424c005218c3 (patch)
treed7fb9733a71c61a962d764190731e915f8a2d576
parentef9abafc0dbd6cb09bce9cadf246f2e6eded6f3b (diff)
parent05bbceb1092a3315cdcb29bda7c756ffbb547500 (diff)
downloadhistacom2-f8e657ddbaf3654f102676a0b51e424c005218c3.tar.gz
histacom2-f8e657ddbaf3654f102676a0b51e424c005218c3.tar.bz2
histacom2-f8e657ddbaf3654f102676a0b51e424c005218c3.zip
Merge remote-tracking branch 'refs/remotes/Histacom2-Devs/master'
-rw-r--r--Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs b/Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs
index 54716e5..b988092 100644
--- a/Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs
+++ b/Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs
@@ -13,12 +13,11 @@ using Histacom2.Engine.Template;
namespace Histacom2.OS.Win95.Win95Apps.Story
{
- static class Hack1 : Object
+ static class Hack1 : object
{
static WindowManager wm = new WindowManager();
static bool ended = false;
static Thread soundThread = new Thread(dialup_sound_play);
- static bool devMode = true;
// This is the very first story script!
public static void StartObjective()
@@ -28,7 +27,7 @@ namespace Histacom2.OS.Win95.Win95Apps.Story
tmr.Interval = 1;
tmr.Tick += new EventHandler(CheckIfSoundFinished);
- if (devMode == true) ContinueObjective();
+ if (SaveSystem.DevMode) ContinueObjective();
else
{
soundThread.Start();