[Scummvm-cvs-logs] scummvm master -> 11b920d8aedbe9ea77c83883915e4aec5b03bf76

bluegr bluegr at gmail.com
Thu Dec 13 02:42:19 CET 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
11b920d8ae TINSEL: Fix a comment in playDW1MacMusic()


Commit: 11b920d8aedbe9ea77c83883915e4aec5b03bf76
    https://github.com/scummvm/scummvm/commit/11b920d8aedbe9ea77c83883915e4aec5b03bf76
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2012-12-12T17:41:15-08:00

Commit Message:
TINSEL: Fix a comment in playDW1MacMusic()

Thanks to clone2727 for noticing

Changed paths:
    engines/tinsel/sound.cpp



diff --git a/engines/tinsel/sound.cpp b/engines/tinsel/sound.cpp
index 886f10c..2fb1dc1 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);






More information about the Scummvm-git-logs mailing list