diff options
author | Matthew Hoops | 2015-08-09 20:05:40 -0400 |
---|---|---|
committer | Matthew Hoops | 2015-08-30 19:53:53 -0400 |
commit | de2f4e698270937251f0655c19555fb9099df55f (patch) | |
tree | faf8ae6a34e711f28050b8c6d6f13957f95d1114 /engines/zvision/video | |
parent | ba4469da6a111e208d40808cba50e797180a8edd (diff) | |
download | scummvm-rg350-de2f4e698270937251f0655c19555fb9099df55f.tar.gz scummvm-rg350-de2f4e698270937251f0655c19555fb9099df55f.tar.bz2 scummvm-rg350-de2f4e698270937251f0655c19555fb9099df55f.zip |
VIDEO: Add support for MP3 in AVI
Diffstat (limited to 'engines/zvision/video')
-rw-r--r-- | engines/zvision/video/zork_avi_decoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/video/zork_avi_decoder.cpp b/engines/zvision/video/zork_avi_decoder.cpp index e69b27baf6..53b0a9a0c5 100644 --- a/engines/zvision/video/zork_avi_decoder.cpp +++ b/engines/zvision/video/zork_avi_decoder.cpp @@ -51,7 +51,7 @@ void ZorkAVIDecoder::ZorkAVIAudioTrack::queueSound(Common::SeekableReadStream *s // RawChunkStream produces native endianness int16 flags |= Audio::FLAG_LITTLE_ENDIAN; #endif - _audStream->queueBuffer((byte *)chunk.data, chunk.size, DisposeAfterUse::YES, flags); + _queueStream->queueBuffer((byte *)chunk.data, chunk.size, DisposeAfterUse::YES, flags); } _curChunk++; |