aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/sprbanks.cpp
diff options
context:
space:
mode:
authorSimei Yin2017-08-15 07:41:32 +0200
committerSimei Yin2017-08-15 07:47:56 +0200
commit5eda2befbb29eaacb3ebfafd3a486f25821f053b (patch)
tree658e1f495a204008db0ce2230d8e5f51563cc53e /engines/sludge/sprbanks.cpp
parent302a14677d5fcaa89410d248b4dae1b51854051b (diff)
downloadscummvm-rg350-5eda2befbb29eaacb3ebfafd3a486f25821f053b.tar.gz
scummvm-rg350-5eda2befbb29eaacb3ebfafd3a486f25821f053b.tar.bz2
scummvm-rg350-5eda2befbb29eaacb3ebfafd3a486f25821f053b.zip
SLUDGE: Add debug channel
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 265257c871..5bc5de2fdf 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;
- debugC(2, kSludgeDebugDataLoad, "loadBankForAnim: New sprite bank created OK");
+ debugC(3, kSludgeDebugDataLoad, "loadBankForAnim: New sprite bank created OK");
_allLoadedBanks.push_back(returnMe);
return returnMe;
} else {
- debugC(2, kSludgeDebugDataLoad, "loadBankForAnim: I guess I couldn't load the sprites...");
+ debugC(3, kSludgeDebugDataLoad, "loadBankForAnim: I guess I couldn't load the sprites...");
return nullptr;
}
} else