From ecd5324b48a1ed84bdbddb43040cb5ac8aa426a9 Mon Sep 17 00:00:00 2001 From: lempamo Date: Sat, 1 Apr 2017 16:32:53 -0400 Subject: set start sound to play slightly earlier --- TimeHACK.Main/OS/Win95/Win95.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'TimeHACK.Main/OS') 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()); -- cgit v1.2.3