aboutsummaryrefslogtreecommitdiff
path: root/sound/decoders
diff options
context:
space:
mode:
authorMatthew Hoops2010-07-26 18:18:25 +0000
committerMatthew Hoops2010-07-26 18:18:25 +0000
commit85f9bb1e0c9d55a053378d02095ed1f3aa38aea9 (patch)
tree5b967d363c6b05ecee348ad0563d5387b28b15c6 /sound/decoders
parent7a86204e5cc1e38d0ce6a6095d339cda83f4704c (diff)
downloadscummvm-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
Diffstat (limited to 'sound/decoders')
-rw-r--r--sound/decoders/mac_snd.cpp2
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();