[Scummvm-cvs-logs] CVS: scummvm/scumm gfx.cpp,2.219,2.220

Travis Howell kirben at users.sourceforge.net
Wed Oct 8 22:45:08 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv9155/scumm

Modified Files:
	gfx.cpp 
Log Message:

I had this wrong way around.


Index: gfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/gfx.cpp,v
retrieving revision 2.219
retrieving revision 2.220
diff -u -d -r2.219 -r2.220
--- gfx.cpp	6 Oct 2003 23:12:01 -0000	2.219
+++ gfx.cpp	9 Oct 2003 05:44:46 -0000	2.220
@@ -2113,7 +2113,7 @@
 	for (;;) {
 		byte color = *src++;
 		if (color < numcolors) {
-			*dst = local_palette[_vm->_roomPalette[color]];
+			*dst = _vm->_roomPalette[local_palette[color]];
 			NEXT_ROW;
 		} else {
 			uint run = color - numcolors + 1;





More information about the Scummvm-git-logs mailing list