[squeak-dev] The Trunk: Sound-mt.50.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Apr 6 11:08:09 UTC 2016


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.!



More information about the Squeak-dev mailing list