[Scummvm-cvs-logs] CVS: scummvm/scumm akos.cpp,1.167,1.168

Chris Apers chrilith at users.sourceforge.net
Sun Sep 12 03:48:00 CEST 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2660

Modified Files:
	akos.cpp 
Log Message:
Correct variable name

Index: akos.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/akos.cpp,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -d -r1.167 -r1.168
--- akos.cpp	10 Sep 2004 14:29:36 -0000	1.167
+++ akos.cpp	12 Sep 2004 10:47:02 -0000	1.168
@@ -589,7 +589,7 @@
 
 #ifdef __PALM_OS__
 const byte *defaultScaleTable;
-const byte *old_scaleTable;
+const byte *oldScaleTable;
 #else
 const byte oldScaleTable[256] = {
 	0xFF, 0xFD, 0x7D, 0xBD, 0x3D, 0xDD, 0x5D, 0x9D,
@@ -1718,10 +1718,12 @@
 
 _GINIT(Akos)
 _GSETPTR(Scumm::defaultScaleTable, GBVARS_DEFAULTSCALETABLE_INDEX, byte, GBVARS_SCUMM)
+_GSETPTR(Scumm::oldScaleTable, GBVARS_OLDSCALETABLE_INDEX, byte, GBVARS_SCUMM)
 _GEND
 
 _GRELEASE(Akos)
 _GRELEASEPTR(GBVARS_DEFAULTSCALETABLE_INDEX, GBVARS_SCUMM)
+_GRELEASEPTR(GBVARS_OLDSCALETABLE_INDEX, GBVARS_SCUMM)
 _GEND
 
 #endif





More information about the Scummvm-git-logs mailing list