mirror of
https://github.com/HistacomUnity/Histacom2-old.git
synced 2025-01-22 09:02:01 -05:00
fixed minor things in hack1
This commit is contained in:
parent
cd6273d7c9
commit
05bbceb109
1 changed files with 2 additions and 3 deletions
|
@ -13,12 +13,11 @@
|
|||
|
||||
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 @@ public static void StartObjective()
|
|||
tmr.Interval = 1;
|
||||
tmr.Tick += new EventHandler(CheckIfSoundFinished);
|
||||
|
||||
if (devMode == true) ContinueObjective();
|
||||
if (SaveSystem.DevMode) ContinueObjective();
|
||||
else
|
||||
{
|
||||
soundThread.Start();
|
||||
|
|
Loading…
Reference in a new issue