aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actors/cursor_actor.h
diff options
context:
space:
mode:
authorwhiterandrek2018-06-02 22:06:10 +0300
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commitb682ecb0ea63906b0ad1f735031a9f800d535eb8 (patch)
tree42acc6f5591c012d21c2ca960b96fee82f9f97a7 /engines/pink/objects/actors/cursor_actor.h
parenta531381f2b80aa8f0bf8c10610eaad6a3256415f (diff)
downloadscummvm-rg350-b682ecb0ea63906b0ad1f735031a9f800d535eb8.tar.gz
scummvm-rg350-b682ecb0ea63906b0ad1f735031a9f800d535eb8.tar.bz2
scummvm-rg350-b682ecb0ea63906b0ad1f735031a9f800d535eb8.zip
PINK: refactor Actors to remove casts and improve readability
Diffstat (limited to 'engines/pink/objects/actors/cursor_actor.h')
-rw-r--r--engines/pink/objects/actors/cursor_actor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pink/objects/actors/cursor_actor.h b/engines/pink/objects/actors/cursor_actor.h
index 897728c30c..8446b76e45 100644
--- a/engines/pink/objects/actors/cursor_actor.h
+++ b/engines/pink/objects/actors/cursor_actor.h
@@ -33,7 +33,7 @@ namespace Pink {
//same as actor
class CursorActor : public Actor {
public:
- void toConsole() {
+ void toConsole() override {
debug("CursorActor: _name = %s", _name.c_str());
for (uint i = 0; i < _actions.size(); ++i) {
_actions[i]->toConsole();