diff options
| author | AShifter <[email protected]> | 2017-04-01 15:09:15 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-04-01 15:09:15 -0600 |
| commit | 5d8b0c4670d542269c02270619d076daaaee43b9 (patch) | |
| tree | 2f62f9a5bd93669b37cd6d0d4dc06fa200d6a3f5 /TimeHACK.Main/OS/Win95/Win95.cs | |
| parent | 973fee67a84980f1851df1a00fd06036774e7d2c (diff) | |
| parent | 125e35fe984021d892b98acff614e61a2851a9b1 (diff) | |
| download | histacom2-5d8b0c4670d542269c02270619d076daaaee43b9.tar.gz histacom2-5d8b0c4670d542269c02270619d076daaaee43b9.tar.bz2 histacom2-5d8b0c4670d542269c02270619d076daaaee43b9.zip | |
Merge pull request #25 from lempamo/master
webchat improved things
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95.cs | 10 |
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()); |
