diff options
author | Borja Lorente | 2016-08-01 18:10:17 +0200 |
---|---|---|
committer | Borja Lorente | 2016-08-14 19:00:36 +0200 |
commit | 90b022c07834d13c0ceacadad09d35ff0ea193b3 (patch) | |
tree | 3f83900f20da6452758dd02f10537dbe3bd558b5 /engines/macventure | |
parent | dd2908fe42d54037436e7b3a05bc275d11822a93 (diff) | |
download | scummvm-rg350-90b022c07834d13c0ceacadad09d35ff0ea193b3.tar.gz scummvm-rg350-90b022c07834d13c0ceacadad09d35ff0ea193b3.tar.bz2 scummvm-rg350-90b022c07834d13c0ceacadad09d35ff0ea193b3.zip |
MACVENTURE: Test some sound decodings
Diffstat (limited to 'engines/macventure')
-rw-r--r-- | engines/macventure/sound.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/engines/macventure/sound.cpp b/engines/macventure/sound.cpp index 7eca8b4e8a..97fe3c6132 100644 --- a/engines/macventure/sound.cpp +++ b/engines/macventure/sound.cpp @@ -206,7 +206,6 @@ void SoundAsset::decode1a(Common::SeekableReadStream *stream) { } void SoundAsset::decode44(Common::SeekableReadStream *stream) { - warning("Decode sound 0x44 untested"); stream->seek(0x5e, SEEK_SET); _length = stream->readUint32BE(); _frequency = (stream->readUint32BE() * 22100 / 0x10000) | 0; @@ -216,7 +215,6 @@ void SoundAsset::decode44(Common::SeekableReadStream *stream) { } void SoundAsset::decode78(Common::SeekableReadStream *stream) { - warning("Decode sound 0x78 untested"); Common::Array<byte> wavtable; stream->seek(0xba, SEEK_SET); for (uint i = 0; i < 16; i++) { |