aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/scriptdebug.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2010-05-19 14:45:56 +0000
committerFilippos Karapetis2010-05-19 14:45:56 +0000
commit893af1600aa8f4619e6c56ca2a8f074e230c1084 (patch)
tree0467e0b0053552c2dfda86d0f83c0ed6da552042 /engines/sci/engine/scriptdebug.cpp
parentd1f1c71f5007eb26b3945f1508f886d219491f42 (diff)
downloadscummvm-rg350-893af1600aa8f4619e6c56ca2a8f074e230c1084.tar.gz
scummvm-rg350-893af1600aa8f4619e6c56ca2a8f074e230c1084.tar.bz2
scummvm-rg350-893af1600aa8f4619e6c56ca2a8f074e230c1084.zip
Fixed signed/unsigned warning, changed to CamelCase
svn-id: r49100
Diffstat (limited to 'engines/sci/engine/scriptdebug.cpp')
-rw-r--r--engines/sci/engine/scriptdebug.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/sci/engine/scriptdebug.cpp b/engines/sci/engine/scriptdebug.cpp
index d3eff1376f..4b60626b2e 100644
--- a/engines/sci/engine/scriptdebug.cpp
+++ b/engines/sci/engine/scriptdebug.cpp
@@ -495,11 +495,11 @@ void Kernel::dissectScript(int scriptNumber, Vocabulary *vocab) {
}
while (_seeker < script->size) {
- int objtype = (int16)READ_SCI11ENDIAN_UINT16(script->data + _seeker);
+ int objType = (int16)READ_SCI11ENDIAN_UINT16(script->data + _seeker);
int objsize;
unsigned int seeker = _seeker + 4;
- if (!objtype) {
+ if (!objType) {
printf("End of script object (#0) encountered.\n");
printf("Classes: %i, Objects: %i, Export: %i,\n Var: %i (all base 10)",
objectctr[6], objectctr[1], objectctr[7], objectctr[10]);
@@ -510,13 +510,13 @@ void Kernel::dissectScript(int scriptNumber, Vocabulary *vocab) {
objsize = (int16)READ_SCI11ENDIAN_UINT16(script->data + _seeker + 2);
- printf("Obj type #%x, size 0x%x: ", objtype, objsize);
+ printf("Obj type #%x, size 0x%x: ", objType, objsize);
_seeker += objsize;
- objectctr[objtype]++;
+ objectctr[objType]++;
- switch (objtype) {
+ switch (objType) {
case SCI_OBJ_OBJECT:
dumpScriptObject((char *)script->data, seeker, objsize);
break;