[Scummvm-cvs-logs] CVS: scummvm/scumm akos.cpp,1.55,1.56 gfx.cpp,2.121,2.122 scumm.h,1.218,1.219 scummvm.cpp,2.185,2.186
Max Horn
fingolfin at users.sourceforge.net
Wed May 28 14:29:04 CEST 2003
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/scumm akos.cpp,1.54,1.55 akos.h,1.14,1.15 base-costume.h,1.3,1.4 costume.cpp,1.41,1.42
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sky sky.cpp,1.38,1.39 screen.h,1.3,1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv28605
Modified Files:
akos.cpp gfx.cpp scumm.h scummvm.cpp
Log Message:
spelling
Index: akos.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/akos.cpp,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- akos.cpp 28 May 2003 21:08:56 -0000 1.55
+++ akos.cpp 28 May 2003 21:28:30 -0000 1.56
@@ -206,7 +206,7 @@
if (color == 255) {
palette[0] = color;
} else {
- _vm->_bompActorPalletePtr = palette;
+ _vm->_bompActorPalettePtr = palette;
}
}
}
@@ -985,7 +985,7 @@
_vm->drawBomp(&bdd, decode_mode, 0);
}
- _vm->_bompActorPalletePtr = NULL;
+ _vm->_bompActorPalettePtr = NULL;
return 0;
}
Index: gfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/gfx.cpp,v
retrieving revision 2.121
retrieving revision 2.122
diff -u -d -r2.121 -r2.122
--- gfx.cpp 28 May 2003 20:01:43 -0000 2.121
+++ gfx.cpp 28 May 2003 21:28:30 -0000 2.122
@@ -3738,12 +3738,12 @@
}
void Scumm::bompApplyActorPalette(byte *line_buffer, int32 size) {
- if (_bompActorPalletePtr != 0) {
- *(_bompActorPalletePtr + 255) = 255;
+ if (_bompActorPalettePtr != 0) {
+ *(_bompActorPalettePtr + 255) = 255;
while(1) {
if (size-- == 0)
break;
- *line_buffer = *(_bompActorPalletePtr + *line_buffer);
+ *line_buffer = *(_bompActorPalettePtr + *line_buffer);
line_buffer++;
}
}
Index: scumm.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scumm.h,v
retrieving revision 1.218
retrieving revision 1.219
diff -u -d -r1.218 -r1.219
--- scumm.h 28 May 2003 20:01:46 -0000 1.218
+++ scumm.h 28 May 2003 21:28:30 -0000 1.219
@@ -895,7 +895,7 @@
public:
byte *_bompScallingXPtr, *_bompScallingYPtr;
byte *_bompMaskPtr;
- byte *_bompActorPalletePtr;
+ byte *_bompActorPalettePtr;
void drawBomp(BompDrawData *bd, int decode_mode, int mask);
protected:
Index: scummvm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scummvm.cpp,v
retrieving revision 2.185
retrieving revision 2.186
diff -u -d -r2.185 -r2.186
--- scummvm.cpp 28 May 2003 20:01:46 -0000 2.185
+++ scummvm.cpp 28 May 2003 21:28:30 -0000 2.186
@@ -339,7 +339,7 @@
_bompScallingXPtr = NULL;
_bompScallingYPtr = NULL;
_bompMaskPtr = NULL;
- _bompActorPalletePtr = NULL;
+ _bompActorPalettePtr = NULL;
_shakeEnabled= false;
_shakeFrame = 0;
_screenStartStrip = 0;
- Previous message: [Scummvm-cvs-logs] CVS: scummvm/scumm akos.cpp,1.54,1.55 akos.h,1.14,1.15 base-costume.h,1.3,1.4 costume.cpp,1.41,1.42
- Next message: [Scummvm-cvs-logs] CVS: scummvm/sky sky.cpp,1.38,1.39 screen.h,1.3,1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Scummvm-git-logs
mailing list