diff options
author | Filippos Karapetis | 2012-12-13 03:41:15 +0200 |
---|---|---|
committer | Filippos Karapetis | 2012-12-13 03:41:15 +0200 |
commit | 11b920d8aedbe9ea77c83883915e4aec5b03bf76 (patch) | |
tree | 9085395ee37e060ece9c24b37afc036fd46f7cb1 /engines/tinsel | |
parent | 07994fb3610ddf1b3b23fbd53aaff44a4626f756 (diff) | |
download | scummvm-rg350-11b920d8aedbe9ea77c83883915e4aec5b03bf76.tar.gz scummvm-rg350-11b920d8aedbe9ea77c83883915e4aec5b03bf76.tar.bz2 scummvm-rg350-11b920d8aedbe9ea77c83883915e4aec5b03bf76.zip |
TINSEL: Fix a comment in playDW1MacMusic()
Thanks to clone2727 for noticing
Diffstat (limited to 'engines/tinsel')
-rw-r--r-- | engines/tinsel/sound.cpp | 2 |
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); |