aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-03-29 15:56:42 +0000
committerPaweł Kołodziejski2003-03-29 15:56:42 +0000
commit6dd0b2d9bbf909c68809dab3db308235f89f6a25 (patch)
treebdcbfc62cf18a3075d4e430ca3e5d715a106668e /scumm/resource.cpp
parent69723edd1ef0a742d2b245dacd25930fc6179f95 (diff)
downloadscummvm-rg350-6dd0b2d9bbf909c68809dab3db308235f89f6a25.tar.gz
scummvm-rg350-6dd0b2d9bbf909c68809dab3db308235f89f6a25.tar.bz2
scummvm-rg350-6dd0b2d9bbf909c68809dab3db308235f89f6a25.zip
changed printf to debug
svn-id: r6883
Diffstat (limited to 'scumm/resource.cpp')
-rw-r--r--scumm/resource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp
index ec1b32afc8..54ca46c9aa 100644
--- a/scumm/resource.cpp
+++ b/scumm/resource.cpp
@@ -1620,7 +1620,7 @@ void Scumm::allocateArrays() {
_inventory = (uint16 *)calloc(_numInventory, sizeof(uint16));
_verbs = (VerbSlot *)calloc(_numVerbs, sizeof(VerbSlot));
_objs = (ObjectData *)calloc(_numLocalObjects, sizeof(ObjectData));
- printf("Allocated %d space in numObjects\n", _numLocalObjects);
+ debug(2, "Allocated %d space in numObjects\n", _numLocalObjects);
_vars = (int32 *)calloc(_numVariables, sizeof(int32));
_bitVars = (byte *)calloc(_numBitVariables >> 3, 1);