aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/sprbanks.cpp
diff options
context:
space:
mode:
authorSimei Yin2017-08-02 16:35:09 +0200
committerSimei Yin2017-08-02 17:46:42 +0200
commit44c5f5e474f192f2a14b6430ecfe55601027119e (patch)
tree044d7bf1b1ce4539481eb78b2b9abaf48f7b9a56 /engines/sludge/sprbanks.cpp
parentc4fbb545a67635f58a7163bf01500f763e25df36 (diff)
downloadscummvm-rg350-44c5f5e474f192f2a14b6430ecfe55601027119e.tar.gz
scummvm-rg350-44c5f5e474f192f2a14b6430ecfe55601027119e.tar.bz2
scummvm-rg350-44c5f5e474f192f2a14b6430ecfe55601027119e.zip
SLUDGE: Refine debug channels
Diffstat (limited to 'engines/sludge/sprbanks.cpp')
-rw-r--r--engines/sludge/sprbanks.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sludge/sprbanks.cpp b/engines/sludge/sprbanks.cpp
index 9cb4a58c40..265257c871 100644
--- a/engines/sludge/sprbanks.cpp
+++ b/engines/sludge/sprbanks.cpp
@@ -46,11 +46,11 @@ LoadedSpriteBank *GraphicsManager::loadBankForAnim(int ID) {
returnMe->ID = ID;
if (loadSpriteBank(ID, returnMe->bank, false)) {
returnMe->timesUsed = 0;
- debug(kSludgeDebugDataLoad, "loadBankForAnim: New sprite bank created OK");
+ debugC(2, kSludgeDebugDataLoad, "loadBankForAnim: New sprite bank created OK");
_allLoadedBanks.push_back(returnMe);
return returnMe;
} else {
- debug(kSludgeDebugDataLoad, "loadBankForAnim: I guess I couldn't load the sprites...");
+ debugC(2, kSludgeDebugDataLoad, "loadBankForAnim: I guess I couldn't load the sprites...");
return nullptr;
}
} else