aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-04-01 16:32:53 -0400
committerlempamo <[email protected]>2017-04-01 16:32:53 -0400
commitecd5324b48a1ed84bdbddb43040cb5ac8aa426a9 (patch)
tree3eb3d1fc1c47fd434b8c3ba52468b6e771117cbd /TimeHACK.Main/OS
parent20dcdbf96d65bd92feec3509cd586cc324fb46c7 (diff)
downloadhistacom2-ecd5324b48a1ed84bdbddb43040cb5ac8aa426a9.tar.gz
histacom2-ecd5324b48a1ed84bdbddb43040cb5ac8aa426a9.tar.bz2
histacom2-ecd5324b48a1ed84bdbddb43040cb5ac8aa426a9.zip
set start sound to play slightly earlier
Diffstat (limited to 'TimeHACK.Main/OS')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs
index 260d909..6ca7f10 100644
--- a/TimeHACK.Main/OS/Win95/Win95.cs
+++ b/TimeHACK.Main/OS/Win95/Win95.cs
@@ -26,6 +26,11 @@ namespace TimeHACK.OS.Win95
// When New Game is clicked in TitleScreen.cs
private void Desktop_Load(object sender, EventArgs e)
{
+ // Play Windows 95 Start Sound
+ Stream audio = Properties.Resources.Win95Start;
+ startsound = new SoundPlayer(audio);
+ startsound.Play();
+
// Hide the Startmenu
startmenu.Hide();
@@ -38,11 +43,6 @@ namespace TimeHACK.OS.Win95
// Start the ClockTimer
clockTimer.Start();
- // Play Windows 95 Start Sound
- Stream audio = Properties.Resources.Win95Start;
- startsound = new SoundPlayer(audio);
- startsound.Play();
-
// Set the StartMenu seperator
startmenuitems.Items.Insert(6, new ToolStripSeparator());