Merge remote-tracking branch 'refs/remotes/Histacom2-Devs/master'

This commit is contained in:
AShifter 2017-08-27 08:43:22 -06:00
commit f8e657ddba

View file

@ -13,12 +13,11 @@
namespace Histacom2.OS.Win95.Win95Apps.Story namespace Histacom2.OS.Win95.Win95Apps.Story
{ {
static class Hack1 : Object static class Hack1 : object
{ {
static WindowManager wm = new WindowManager(); static WindowManager wm = new WindowManager();
static bool ended = false; static bool ended = false;
static Thread soundThread = new Thread(dialup_sound_play); static Thread soundThread = new Thread(dialup_sound_play);
static bool devMode = true;
// This is the very first story script! // This is the very first story script!
public static void StartObjective() public static void StartObjective()
@ -28,7 +27,7 @@ public static void StartObjective()
tmr.Interval = 1; tmr.Interval = 1;
tmr.Tick += new EventHandler(CheckIfSoundFinished); tmr.Tick += new EventHandler(CheckIfSoundFinished);
if (devMode == true) ContinueObjective(); if (SaveSystem.DevMode) ContinueObjective();
else else
{ {
soundThread.Start(); soundThread.Start();