aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actions/action_sound.cpp
diff options
context:
space:
mode:
authorAndrei Prykhodko2018-07-21 19:40:12 +0300
committerAndrei Prykhodko2018-07-21 19:40:12 +0300
commitcd87d769327dfb760460be471d7ffda63e339685 (patch)
tree91c389c38edd16a593a3f10c3c47db0ceaeaafa5 /engines/pink/objects/actions/action_sound.cpp
parentcb3945cf4ffc9fc9eb3b834dafae43d57afe19ea (diff)
downloadscummvm-rg350-cd87d769327dfb760460be471d7ffda63e339685.tar.gz
scummvm-rg350-cd87d769327dfb760460be471d7ffda63e339685.tar.bz2
scummvm-rg350-cd87d769327dfb760460be471d7ffda63e339685.zip
PINK: added more debug output, removed unneeded
Diffstat (limited to 'engines/pink/objects/actions/action_sound.cpp')
-rw-r--r--engines/pink/objects/actions/action_sound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/pink/objects/actions/action_sound.cpp b/engines/pink/objects/actions/action_sound.cpp
index 6491c09d01..4d4918f0f1 100644
--- a/engines/pink/objects/actions/action_sound.cpp
+++ b/engines/pink/objects/actions/action_sound.cpp
@@ -62,7 +62,7 @@ void ActionSound::start() {
_sound.play(page->getResourceStream(_fileName), soundType, _volume, 0, _isLoop);
- debugC(6, kPinkDebugGeneral, "Actor %s has now ActionSound %s", _actor->getName().c_str(), _name.c_str());
+ debugC(6, kPinkDebugActions, "Actor %s has now ActionSound %s", _actor->getName().c_str(), _name.c_str());
}
void ActionSound::end() {
@@ -72,7 +72,7 @@ void ActionSound::end() {
director->removeSound(this);
}
- debugC(6, kPinkDebugGeneral, "ActionSound %s of Actor %s is ended", _name.c_str(), _actor->getName().c_str());
+ debugC(6, kPinkDebugActions, "ActionSound %s of Actor %s is ended", _name.c_str(), _actor->getName().c_str());
}
void ActionSound::update() {