aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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();