[Scummvm-cvs-logs] SF.net SVN: scummvm: [23181] scummvm/branches/branch-0-9-0/engines/scumm/verbs.cpp

kirben at users.sourceforge.net kirben at users.sourceforge.net
Mon Jun 19 12:31:15 CEST 2006


Revision: 23181
Author:   kirben
Date:     2006-06-19 03:31:09 -0700 (Mon, 19 Jun 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=23181&view=rev

Log Message:
-----------
Fix inventory colors regression in C64 maniac

Modified Paths:
--------------
    scummvm/branches/branch-0-9-0/engines/scumm/verbs.cpp
Modified: scummvm/branches/branch-0-9-0/engines/scumm/verbs.cpp
===================================================================
--- scummvm/branches/branch-0-9-0/engines/scumm/verbs.cpp	2006-06-19 10:29:36 UTC (rev 23180)
+++ scummvm/branches/branch-0-9-0/engines/scumm/verbs.cpp	2006-06-19 10:31:09 UTC (rev 23181)
@@ -119,14 +119,14 @@
 	int i;
 	int arrow_color, color, hi_color;
 
-	if (_game.version == 1) {
+	if (_game.version == 2) {
+		color = 13;
+		hi_color = 14;
+		arrow_color = 1;
+	} else {
 		color = 16;
 		hi_color = 7;
 		arrow_color = 6;
-	} else {
-		color = 13;
-		hi_color = 14;
-		arrow_color = 1;
 	}
 
 	_mouseOverBoxV2 = -1;


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