1
0
Fork 0
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:
Shlomi Fish 2021-11-29 07:23:26 +02:00
parent ffa0ae1a2f
commit 93923f9d19

View file

@ -606,8 +606,8 @@ class PyGameAudioClient(AbstractAudioClient):
th.start() th.start()
def updateSettings(self): def updateSettings(self):
if (not ((self.app.opt.sound or self.app.opt.music) and if (not self.app.opt.sound or not self.app.opt.music or
self.app.opt.sound_music_volume > 0)): self.app.opt.sound_music_volume == 0):
if self.music: if self.music:
self.music.stop() self.music.stop()
self.music = None self.music = None