From 90b022c07834d13c0ceacadad09d35ff0ea193b3 Mon Sep 17 00:00:00 2001 From: Borja Lorente Date: Mon, 1 Aug 2016 18:10:17 +0200 Subject: MACVENTURE: Test some sound decodings --- engines/macventure/sound.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'engines/macventure') 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 wavtable; stream->seek(0xba, SEEK_SET); for (uint i = 0; i < 16; i++) { -- cgit v1.2.3