mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
* fixed bug #3046827
git-svn-id: file:///home/shlomif/Backup/svn-dumps/PySolFC/svnsync-repos/pysolfc/PySolFC/trunk@267 efabe8c0-fbe8-4139-b769-b5e6d273206e
This commit is contained in:
parent
27f49e6bc7
commit
23490fe487
1 changed files with 5 additions and 2 deletions
|
@ -248,6 +248,8 @@ def pysol_init(app, args):
|
|||
AbstractAudioClient):
|
||||
try:
|
||||
app.audio = c()
|
||||
app.audio.startServer()
|
||||
app.audio.connectServer(app)
|
||||
except:
|
||||
pass
|
||||
else:
|
||||
|
@ -256,7 +258,9 @@ def pysol_init(app, args):
|
|||
else:
|
||||
c = sounds[SOUND_MOD]
|
||||
app.audio = c()
|
||||
app.audio.startServer()
|
||||
app.audio.startServer()
|
||||
app.audio.connectServer(app)
|
||||
|
||||
# update sound_mode
|
||||
if isinstance(app.audio, PysolSoundServerModuleClient):
|
||||
app.opt.sound_mode = 1
|
||||
|
@ -311,7 +315,6 @@ Please check your %s installation.
|
|||
app.initMusic()
|
||||
|
||||
# init audio 2)
|
||||
app.audio.connectServer(app)
|
||||
if not app.audio.CAN_PLAY_SOUND:
|
||||
app.opt.sound = 0
|
||||
app.audio.updateSettings()
|
||||
|
|
Loading…
Add table
Reference in a new issue