[Scummvm-cvs-logs] SF.net SVN: scummvm: [21296] scummvm/trunk/engines/scumm

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Tue Mar 14 07:37:02 CET 2006


Revision: 21296
Author:   fingolfin
Date:     2006-03-14 07:36:04 -0800 (Tue, 14 Mar 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=21296&view=rev

Log Message:
-----------
To the best of my knowledge, it's really 'C64' and not 'C-64'

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/costume.cpp
    scummvm/trunk/engines/scumm/object.cpp
Modified: scummvm/trunk/engines/scumm/costume.cpp
===================================================================
--- scummvm/trunk/engines/scumm/costume.cpp	2006-03-14 15:25:29 UTC (rev 21295)
+++ scummvm/trunk/engines/scumm/costume.cpp	2006-03-14 15:36:04 UTC (rev 21296)
@@ -359,7 +359,7 @@
 			palette[1] = v1MMActorPalatte1[actor];
 			palette[2] = v1MMActorPalatte2[actor];
 		} else {
-			// Adjust for C-64 version of Zak McKracken
+			// Adjust for C64 version of Zak McKracken
 			palette[1] = (_vm->_game.platform == Common::kPlatformC64) ? 10 : 8;
 			palette[2] = _palette[actor];
 		}

Modified: scummvm/trunk/engines/scumm/object.cpp
===================================================================
--- scummvm/trunk/engines/scumm/object.cpp	2006-03-14 15:25:29 UTC (rev 21295)
+++ scummvm/trunk/engines/scumm/object.cpp	2006-03-14 15:36:04 UTC (rev 21296)
@@ -636,7 +636,7 @@
 	else
 		ptr = room + 29;
 
-	// Default pointer of objects without image, in C-64 verison of Maniac Mansion
+	// Default pointer of objects without image, in C64 verison of Maniac Mansion
 	int defaultPtr = READ_LE_UINT16(ptr + 2 * _numObjectsInRoom);
 
 	for (i = 0; i < _numObjectsInRoom; i++) {
@@ -1097,7 +1097,7 @@
 const byte *ScummEngine::getOBIMFromObjectData(const ObjectData &od) {
 	const byte *ptr;
 
-	// For objects without image in C-64 version of Maniac Mansion
+	// For objects without image in C64 version of Maniac Mansion
 	if (_game.platform == Common::kPlatformC64 && _game.id == GID_MANIAC && od.OBIMoffset == 0)
 		return NULL;
 


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