mirror of
https://github.com/HistacomUnity/Histacom2-old.git
synced 2025-01-22 09:02:01 -05:00
Merge remote-tracking branch 'refs/remotes/Histacom2-Devs/master'
This commit is contained in:
commit
f8e657ddba
1 changed files with 2 additions and 3 deletions
|
@ -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();
|
||||||
|
|
Loading…
Reference in a new issue