aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/game.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2007-01-13 15:35:02 +0000
committerEugene Sandulenko2007-01-13 15:35:02 +0000
commit24c9735588ac8d914b8f058cf68373b4e9a67071 (patch)
tree7100d5cb797f0c71eda254feb084ab49ed534c02 /engines/gob/game.cpp
parentbad2b283c12e09eaa3c72f9ca67913b2a14afd03 (diff)
downloadscummvm-rg350-24c9735588ac8d914b8f058cf68373b4e9a67071.tar.gz
scummvm-rg350-24c9735588ac8d914b8f058cf68373b4e9a67071.tar.bz2
scummvm-rg350-24c9735588ac8d914b8f058cf68373b4e9a67071.zip
Rename special debug levels to conform our suggested naming scheme.
svn-id: r25073
Diffstat (limited to 'engines/gob/game.cpp')
-rw-r--r--engines/gob/game.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/gob/game.cpp b/engines/gob/game.cpp
index 09c922f921..5424a931b4 100644
--- a/engines/gob/game.cpp
+++ b/engines/gob/game.cpp
@@ -184,15 +184,15 @@ char *Game::loadExtData(int16 itemId, int16 *pResWidth, int16 *pResHeight, uint3
if (pResWidth != 0) {
*pResWidth = item->width & 0x7fff;
*pResHeight = item->height;
- debugC(7, DEBUG_FILEIO, "loadExtData(%d, %d, %d)", itemId, *pResWidth, *pResHeight);
+ debugC(7, kDebugFileIO, "loadExtData(%d, %d, %d)", itemId, *pResWidth, *pResHeight);
}
- debugC(7, DEBUG_FILEIO, "loadExtData(%d, 0, 0)", itemId);
+ debugC(7, kDebugFileIO, "loadExtData(%d, 0, 0)", itemId);
if (item->height == 0)
size += (item->width & 0x7fff) << 16;
- debugC(7, DEBUG_FILEIO, "size: %d off: %d", size, offset);
+ debugC(7, kDebugFileIO, "size: %d off: %d", size, offset);
if (offset >= 0) {
handle = _extHandle;
} else {
@@ -205,7 +205,7 @@ char *Game::loadExtData(int16 itemId, int16 *pResWidth, int16 *pResHeight, uint3
handle = commonHandle;
}
- debugC(7, DEBUG_FILEIO, "off: %d size: %d", offset, tableSize);
+ debugC(7, kDebugFileIO, "off: %d size: %d", offset, tableSize);
_vm->_dataio->seekData(handle, offset + tableSize, SEEK_SET);
realSize = size;
// CHECKME: is the below correct?