diff options
| author | Matthew Hoops | 2010-07-26 18:18:25 +0000 |
|---|---|---|
| committer | Matthew Hoops | 2010-07-26 18:18:25 +0000 |
| commit | 85f9bb1e0c9d55a053378d02095ed1f3aa38aea9 (patch) | |
| tree | 5b967d363c6b05ecee348ad0563d5387b28b15c6 | |
| parent | 7a86204e5cc1e38d0ce6a6095d339cda83f4704c (diff) | |
| download | scummvm-rg350-85f9bb1e0c9d55a053378d02095ed1f3aa38aea9.tar.gz scummvm-rg350-85f9bb1e0c9d55a053378d02095ed1f3aa38aea9.tar.bz2 scummvm-rg350-85f9bb1e0c9d55a053378d02095ed1f3aa38aea9.zip | |
SOUND: The rate in Mac snd's is fixed, not floating point (fix the comment)
svn-id: r51328
| -rw-r--r-- | sound/decoders/mac_snd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/decoders/mac_snd.cpp b/sound/decoders/mac_snd.cpp index f48d628a5f..d6894f1144 100644 --- a/sound/decoders/mac_snd.cpp +++ b/sound/decoders/mac_snd.cpp @@ -88,7 +88,7 @@ SeekableAudioStream *makeMacSndStream(Common::SeekableReadStream *stream, uint32 soundDataOffset = stream->readUint32BE(); uint32 size = stream->readUint32BE(); - uint16 rate = stream->readUint32BE() >> 16; // Really floating point, but we only support integer rates + uint16 rate = stream->readUint32BE() >> 16; // Really fixed point, but we only support integer rates stream->readUint32BE(); // loop start stream->readUint32BE(); // loop end byte encoding = stream->readByte(); |
