mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
fix issue#229: restore old boolean behavior
See: https://github.com/shlomif/PySolFC/pull/230#issuecomment-981240814
This commit is contained in:
parent
ecf3173d2d
commit
7c28d4ca68
1 changed files with 2 additions and 2 deletions
|
@ -606,8 +606,8 @@ class PyGameAudioClient(AbstractAudioClient):
|
|||
th.start()
|
||||
|
||||
def updateSettings(self):
|
||||
if (not ((self.app.opt.sound or self.app.opt.music) and
|
||||
self.app.opt.sound_music_volume > 0)):
|
||||
if (not self.app.opt.sound or not self.app.opt.music or
|
||||
self.app.opt.sound_music_volume == 0):
|
||||
if self.music:
|
||||
self.music.stop()
|
||||
self.music = None
|
||||
|
|
Loading…
Add table
Reference in a new issue