Fix bug: loadSound should respect positional parameter

This commit is contained in:
rdb
2014-03-06 21:31:02 +00:00
parent ec5f9a9e06
commit aa2c240336

View File

@@ -814,7 +814,7 @@ class Loader(DirectObject):
result = []
for soundPath in soundList:
# should return a valid sound obj even if musicMgr is invalid
sound = manager.getSound(soundPath)
sound = manager.getSound(soundPath, positional)
result.append(sound)
if gotList: