aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/sched.cpp
diff options
context:
space:
mode:
authorMax Horn2010-11-01 16:04:47 +0000
committerMax Horn2010-11-01 16:04:47 +0000
commit9a350f43980d82ec001c077b28c035350478fe8e (patch)
tree3f9beb48843afcfff576b12f770c01e0eac72be9 /engines/tinsel/sched.cpp
parent459ef850684e9f11f2dbb5b129a674048a7cef81 (diff)
downloadscummvm-rg350-9a350f43980d82ec001c077b28c035350478fe8e.tar.gz
scummvm-rg350-9a350f43980d82ec001c077b28c035350478fe8e.tar.bz2
scummvm-rg350-9a350f43980d82ec001c077b28c035350478fe8e.zip
ENGINES: Get rid of some (f)printfs
svn-id: r54011
Diffstat (limited to 'engines/tinsel/sched.cpp')
-rw-r--r--engines/tinsel/sched.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/sched.cpp b/engines/tinsel/sched.cpp
index 97e41e2a7d..08a68d2d4a 100644
--- a/engines/tinsel/sched.cpp
+++ b/engines/tinsel/sched.cpp
@@ -132,7 +132,7 @@ void Scheduler::reset() {
* Shows the maximum number of process used at once.
*/
void Scheduler::printStats() {
- printf("%i process of %i used.\n", maxProcs, NUM_PROCESS);
+ debug("%i process of %i used", maxProcs, NUM_PROCESS);
}
#endif