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
ffa0ae1a2f
commit
93923f9d19
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue