diff options
author | Paul Gilbert | 2017-08-10 19:55:43 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-08-10 19:55:43 -0400 |
commit | 2df37f4eb0dc661c0159ca397e66ef6fe19de64c (patch) | |
tree | 1fcb3a71bb70ed98b48c4fe3b68e3a8cebc238ea /engines | |
parent | fbd1e87824625edad2c1a0040fc9793c3be88b51 (diff) | |
download | scummvm-rg350-2df37f4eb0dc661c0159ca397e66ef6fe19de64c.tar.gz scummvm-rg350-2df37f4eb0dc661c0159ca397e66ef6fe19de64c.tar.bz2 scummvm-rg350-2df37f4eb0dc661c0159ca397e66ef6fe19de64c.zip |
TITANIC: Fix starting playback in music room
Diffstat (limited to 'engines')
-rw-r--r-- | engines/titanic/sound/wave_file.h | 2 |
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; } /** |