Marcel Taeumel uploaded a new version of Sound to project The Trunk:
http://source.squeak.org/trunk/Sound-mt.50.mcz==================== Summary ====================
Name: Sound-mt.50
Author: mt
Time: 6 April 2016, 1:07:48.224625 pm
UUID: 07f087d1-3449-4f4d-a243-7bf79a49b90e
Ancestors: Sound-mt.49
Use this sound system by default if there is no other sound system used already.
=============== Diff against Sound-mt.49 ===============
Item was changed:
----- Method: AbstractSound>>play (in category 'playing') -----
play
"Play this sound to the sound output port in real time. Use the sound service to check for sound preferences."
+ SoundService playSound: self.!
- SoundService play: self.!
Item was changed:
----- Method: BaseSoundSystem class>>initialize (in category 'class initialization') -----
initialize
+
+ SoundService register: self.
+
+ SoundService defaultOrNil
+ ifNil: [SoundService default: self].!
- SoundService register: self.!