Mercurial > touhou
diff pytouhou/games/eosd.py @ 528:7c3c90468996
Inherit music players from a base class.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Wed, 18 Dec 2013 22:36:23 +0100 |
parents | 577c3a88fb67 |
children | bcff39c920ab |
line wrap: on
line diff
--- a/pytouhou/games/eosd.py +++ b/pytouhou/games/eosd.py @@ -282,7 +282,8 @@ class EoSDInterface(object): else: timeout_label.set_color('red') if (boss.timeout - boss.frame) % 60 == 0 and boss.timeout != 0: - self.game.sfx_player.play('timeout.wav', volume=1.) + self.game.sfx_player.set_volume('timeout.wav', 1.) + self.game.sfx_player.play('timeout.wav') timeout_label.set_text('%02d' % (timeout if timeout >= 0 else 0)) timeout_label.changed = True