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 ecf3173d2d
commit 7c28d4ca68

View file

@ -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