aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actions/action_hide.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pink/objects/actions/action_hide.cpp')
-rw-r--r--engines/pink/objects/actions/action_hide.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/pink/objects/actions/action_hide.cpp b/engines/pink/objects/actions/action_hide.cpp
index a8a9a3a0b7..1732d2d967 100644
--- a/engines/pink/objects/actions/action_hide.cpp
+++ b/engines/pink/objects/actions/action_hide.cpp
@@ -27,20 +27,20 @@
namespace Pink {
void Pink::ActionHide::deserialize(Archive &archive) {
- Action::deserialize(archive);
+ Action::deserialize(archive);
}
void ActionHide::start(bool unk_startNow) {
- debug("Actor %s has now ActionHide %s", _actor->getName().c_str(), _name.c_str());
- _actor->endAction();
+ debug("Actor %s has now ActionHide %s", _actor->getName().c_str(), _name.c_str());
+ _actor->endAction();
}
void ActionHide::end() {
- debug("ActionHide %s of Actor %s is ended", _name.c_str(), _actor->getName().c_str());
+ debug("ActionHide %s of Actor %s is ended", _name.c_str(), _actor->getName().c_str());
}
void ActionHide::toConsole() {
- debug("\tActionHide: _name = %s", _name.c_str());
+ debug("\tActionHide: _name = %s", _name.c_str());
}
ActionHide::~ActionHide() {}