diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-01 21:35:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-08-01 22:40:36 +0300 |
commit | fc854786ed73fe768d6a3ca22c02f7013560a930 (patch) | |
tree | 3a12f555d194679957559760567ff8eb701b494b /src/being.h | |
parent | 09d74d9273cca445b7019edacaff53452a1eee3c (diff) | |
download | plus-fc854786ed73fe768d6a3ca22c02f7013560a930.tar.gz plus-fc854786ed73fe768d6a3ca22c02f7013560a930.tar.bz2 plus-fc854786ed73fe768d6a3ca22c02f7013560a930.tar.xz plus-fc854786ed73fe768d6a3ca22c02f7013560a930.zip |
Fix code style.
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being.h b/src/being.h index d09e97225..5ece2bc41 100644 --- a/src/being.h +++ b/src/being.h @@ -527,7 +527,7 @@ class Being : public ActorSprite, public ConfigListener * Returns the direction the being is facing. */ SpriteDirection getSpriteDirection() const - { return SpriteDirection(mSpriteDirection); } + { return static_cast<SpriteDirection>(mSpriteDirection); } void setPosition(const Vector &pos); |