aboutsummaryrefslogtreecommitdiff
path: root/sound/decoders/aiff.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2010-01-30 15:28:07 +0000
committerJohannes Schickel2010-01-30 15:28:07 +0000
commit3cc0ef6c1cf5574168456e74736baf8f4e231af6 (patch)
treea9267881522e6e3704d1d364ce67123d82e4af81 /sound/decoders/aiff.cpp
parenta505d32eff97e31ac73495e202f9c01f6490dcf8 (diff)
downloadscummvm-rg350-3cc0ef6c1cf5574168456e74736baf8f4e231af6.tar.gz
scummvm-rg350-3cc0ef6c1cf5574168456e74736baf8f4e231af6.tar.bz2
scummvm-rg350-3cc0ef6c1cf5574168456e74736baf8f4e231af6.zip
Remove RawMemoryStream.
svn-id: r47717
Diffstat (limited to 'sound/decoders/aiff.cpp')
-rw-r--r--sound/decoders/aiff.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/decoders/aiff.cpp b/sound/decoders/aiff.cpp
index e474e999d0..2f12669072 100644
--- a/sound/decoders/aiff.cpp
+++ b/sound/decoders/aiff.cpp
@@ -173,7 +173,7 @@ SeekableAudioStream *makeAIFFStream(Common::SeekableReadStream &stream) {
stream.read(data, size);
// Since we allocated our own buffer for the data, we must specify DisposeAfterUse::YES.
- return makeRawMemoryStream(data, size, rate, flags);
+ return makeRawStream(data, size, rate, flags);
}
} // End of namespace Audio