[Scummvm-cvs-logs] SF.net SVN: scummvm:[47534] scummvm/trunk

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Mon Jan 25 01:39:47 CET 2010


Revision: 47534
          http://scummvm.svn.sourceforge.net/scummvm/?rev=47534&view=rev
Author:   lordhoto
Date:     2010-01-25 00:39:46 +0000 (Mon, 25 Jan 2010)

Log Message:
-----------
Change some comments to use "AdLib" instead of "adlib".

Modified Paths:
--------------
    scummvm/trunk/engines/lure/sound.cpp
    scummvm/trunk/engines/sci/sound/drivers/adlib.cpp
    scummvm/trunk/engines/sci/sound/iterator/iterator.cpp
    scummvm/trunk/engines/sky/music/adlibmusic.cpp
    scummvm/trunk/sound/mididrv.cpp

Modified: scummvm/trunk/engines/lure/sound.cpp
===================================================================
--- scummvm/trunk/engines/lure/sound.cpp	2010-01-25 00:32:39 UTC (rev 47533)
+++ scummvm/trunk/engines/lure/sound.cpp	2010-01-25 00:39:46 UTC (rev 47534)
@@ -226,8 +226,8 @@
 
 	if (_isRoland)
 		newEntry->volume = rec.volume;
-	else /* resource volumes do not seem to work well with our adlib emu */
-		newEntry->volume = 240; /* 255 causes clipping with adlib */
+	else /* resource volumes do not seem to work well with our AdLib emu */
+		newEntry->volume = 240; /* 255 causes clipping with AdLib */
 
 	_activeSounds.push_back(SoundList::value_type(newEntry));
 

Modified: scummvm/trunk/engines/sci/sound/drivers/adlib.cpp
===================================================================
--- scummvm/trunk/engines/sci/sound/drivers/adlib.cpp	2010-01-25 00:32:39 UTC (rev 47533)
+++ scummvm/trunk/engines/sci/sound/drivers/adlib.cpp	2010-01-25 00:39:46 UTC (rev 47534)
@@ -311,7 +311,7 @@
 	case 0xc0:
 		_channels[channel].patch = op1;
 		break;
-	// The original adlib driver from sierra ignores aftertouch completely, so should we
+	// The original AdLib driver from sierra ignores aftertouch completely, so should we
 	case 0xa0: // Polyphonic key pressure (aftertouch)
 	case 0xd0: // Channel pressure (aftertouch)
 		break;
@@ -790,7 +790,7 @@
 	if (res) {
 		ok = static_cast<MidiDriver_AdLib *>(_driver)->loadResource(res->data, res->size);
 	} else {
-		// Early SCI0 games have the sound bank embedded in the adlib driver
+		// Early SCI0 games have the sound bank embedded in the AdLib driver
 
 		Common::File f;
 

Modified: scummvm/trunk/engines/sci/sound/iterator/iterator.cpp
===================================================================
--- scummvm/trunk/engines/sci/sound/iterator/iterator.cpp	2010-01-25 00:32:39 UTC (rev 47533)
+++ scummvm/trunk/engines/sci/sound/iterator/iterator.cpp	2010-01-25 00:39:46 UTC (rev 47534)
@@ -340,7 +340,7 @@
 		}
 		case 0x04: /* UNKNOWN NYI (happens in LSL2 gameshow) */
 		case 0x46: /* UNKNOWN NYI (happens in LSL3 binoculars) */
-		case 0x61: /* UNKNOWN NYI (special for adlib? Iceman) */
+		case 0x61: /* UNKNOWN NYI (special for AdLib? Iceman) */
 		case 0x73: /* UNKNOWN NYI (happens in Hoyle) */
 		case 0xd1: /* UNKNOWN NYI (happens in KQ4 when riding the unicorn) */
 			return /* Execute next command */

Modified: scummvm/trunk/engines/sky/music/adlibmusic.cpp
===================================================================
--- scummvm/trunk/engines/sky/music/adlibmusic.cpp	2010-01-25 00:32:39 UTC (rev 47533)
+++ scummvm/trunk/engines/sky/music/adlibmusic.cpp	2010-01-25 00:39:46 UTC (rev 47534)
@@ -78,7 +78,7 @@
 
 void AdLibMusic::setupPointers() {
 	if (SkyEngine::_systemVars.gameVersion == 109) {
-		// disk demo uses a different adlib driver version, some offsets have changed
+		// disk demo uses a different AdLib driver version, some offsets have changed
 		//_musicDataLoc = (_musicData[0x11CC] << 8) | _musicData[0x11CB];
 		//_initSequence = _musicData + 0xEC8;
 

Modified: scummvm/trunk/sound/mididrv.cpp
===================================================================
--- scummvm/trunk/sound/mididrv.cpp	2010-01-25 00:32:39 UTC (rev 47533)
+++ scummvm/trunk/sound/mididrv.cpp	2010-01-25 00:39:46 UTC (rev 47534)
@@ -83,7 +83,7 @@
 	{"mt32", "MT-32 Emulation", MD_MT32, MDT_MIDI},
 #endif
 
-	// The flags for the "adlib" driver indicates that it can do adlib and MIDI.
+	// The flags for the "adlib" driver indicates that it can do AdLib and MIDI.
 	{"adlib", "AdLib", MD_ADLIB, MDT_ADLIB},
 	{"pcspk", "PC Speaker", MD_PCSPK, MDT_PCSPK},
 	{"pcjr", "IBM PCjr", MD_PCJR, MDT_PCSPK},


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list