aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actions/action_hide.cpp
diff options
context:
space:
mode:
authorwhiterandrek2018-05-22 08:03:37 +0300
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commit82974a9ce37aba6240f7c3543947631170f012c2 (patch)
tree6aeed5f5edfb1c758b2c18b8ac224bde40eaff8c /engines/pink/objects/actions/action_hide.cpp
parent931d6adbcbbe063857814dc76886e9a967b2a4f3 (diff)
downloadscummvm-rg350-82974a9ce37aba6240f7c3543947631170f012c2.tar.gz
scummvm-rg350-82974a9ce37aba6240f7c3543947631170f012c2.tar.bz2
scummvm-rg350-82974a9ce37aba6240f7c3543947631170f012c2.zip
PINK: fix indentation
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() {}