aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2012-12-13 03:41:15 +0200
committerFilippos Karapetis2012-12-13 03:41:15 +0200
commit11b920d8aedbe9ea77c83883915e4aec5b03bf76 (patch)
tree9085395ee37e060ece9c24b37afc036fd46f7cb1
parent07994fb3610ddf1b3b23fbd53aaff44a4626f756 (diff)
downloadscummvm-rg350-11b920d8aedbe9ea77c83883915e4aec5b03bf76.tar.gz
scummvm-rg350-11b920d8aedbe9ea77c83883915e4aec5b03bf76.tar.bz2
scummvm-rg350-11b920d8aedbe9ea77c83883915e4aec5b03bf76.zip
TINSEL: Fix a comment in playDW1MacMusic()
Thanks to clone2727 for noticing
-rw-r--r--engines/tinsel/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/sound.cpp b/engines/tinsel/sound.cpp
index 886f10c5e8..2fb1dc112b 100644
--- a/engines/tinsel/sound.cpp
+++ b/engines/tinsel/sound.cpp
@@ -187,7 +187,7 @@ bool SoundManager::playDW1MacMusic(int dwFileOffset) {
uint32 length = s.readUint32BE();
// TODO: It's a bad idea to load the music track in a buffer.
- // We should use a readStream instead, and keep midi.dat open.
+ // We should use a SubReadStream instead, and keep midi.dat open.
// However, the track lengths aren't that big (about 1-4MB),
// so this shouldn't be a major issue.
byte *soundData = (byte *)malloc(length);