diff options
Diffstat (limited to 'engines/tinsel/object.cpp')
-rw-r--r-- | engines/tinsel/object.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/tinsel/object.cpp b/engines/tinsel/object.cpp index 7a93a0b30a..bf31cdfa25 100644 --- a/engines/tinsel/object.cpp +++ b/engines/tinsel/object.cpp @@ -36,6 +36,8 @@ namespace Tinsel { +// FIXME: Avoid non-const global vars + // list of all objects static OBJECT *objectList = 0; @@ -94,7 +96,7 @@ void KillAllObjects() { */ void ObjectStats() { - printf("%i objects of %i used.\n", maxObj, NUM_OBJECTS); + debug("%i objects of %i used", maxObj, NUM_OBJECTS); } #endif |