summaryrefslogtreecommitdiff
path: root/windows 95/windows me.vb
diff options
context:
space:
mode:
authorTheUltimateHacker <[email protected]>2015-03-02 18:01:07 -0500
committerTheUltimateHacker <[email protected]>2015-03-02 18:01:07 -0500
commit3c9ecd0c0bea92954876af9adfd8f6296403e572 (patch)
treea888214b53cae2e913dbd3f5de19f20f691f9585 /windows 95/windows me.vb
parent70be68814244c074e26916979f0aae1833719d93 (diff)
downloadhistacom-3c9ecd0c0bea92954876af9adfd8f6296403e572.tar.gz
histacom-3c9ecd0c0bea92954876af9adfd8f6296403e572.tar.bz2
histacom-3c9ecd0c0bea92954876af9adfd8f6296403e572.zip
Shutdown sounds added, along with new Windows 2000 startup and shutdown to match the actual Windows 2000 startup and shutdown sounds rather than reusing the sounds from Windows ME.
Diffstat (limited to 'windows 95/windows me.vb')
-rwxr-xr-xwindows 95/windows me.vb6
1 files changed, 3 insertions, 3 deletions
diff --git a/windows 95/windows me.vb b/windows 95/windows me.vb
index 658c903..412349c 100755
--- a/windows 95/windows me.vb
+++ b/windows 95/windows me.vb
@@ -9,9 +9,9 @@
Private Sub windows95_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load
desktopicons.Show()
- If My.Resources.windows_2000_boot_sound.CanRead Then
- Dim bStr(My.Resources.windows_2000_boot_sound.Length) As Byte
- My.Resources.windows_2000_boot_sound.Read(bStr, 0, My.Resources.windows_2000_boot_sound.Length)
+ If My.Resources.Windows_ME_Shutdown.CanRead Then
+ Dim bStr(My.Resources.Windows_ME_Shutdown.Length) As Byte
+ My.Resources.Windows_ME_Shutdown.Read(bStr, 0, My.Resources.Windows_ME_Shutdown.Length)
My.Computer.Audio.Play(bStr, AudioPlayMode.Background)
End If
startmenu.Hide()