aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/sound
diff options
context:
space:
mode:
authorPaul Gilbert2017-08-10 19:55:43 -0400
committerPaul Gilbert2017-08-10 19:55:43 -0400
commit2df37f4eb0dc661c0159ca397e66ef6fe19de64c (patch)
tree1fcb3a71bb70ed98b48c4fe3b68e3a8cebc238ea /engines/titanic/sound
parentfbd1e87824625edad2c1a0040fc9793c3be88b51 (diff)
downloadscummvm-rg350-2df37f4eb0dc661c0159ca397e66ef6fe19de64c.tar.gz
scummvm-rg350-2df37f4eb0dc661c0159ca397e66ef6fe19de64c.tar.bz2
scummvm-rg350-2df37f4eb0dc661c0159ca397e66ef6fe19de64c.zip
TITANIC: Fix starting playback in music room
Diffstat (limited to 'engines/titanic/sound')
-rw-r--r--engines/titanic/sound/wave_file.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/sound/wave_file.h b/engines/titanic/sound/wave_file.h
index 474f8b0817..17c7b62f4b 100644
--- a/engines/titanic/sound/wave_file.h
+++ b/engines/titanic/sound/wave_file.h
@@ -106,7 +106,7 @@ public:
* Returns true if the wave file has data loaded
*/
bool isLoaded() const {
- return _waveData != nullptr;
+ return _waveData != nullptr || _pendingAudioStream != nullptr;
}
/**