diff options
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being.h b/src/being.h index c564482a..d7e9063f 100644 --- a/src/being.h +++ b/src/being.h @@ -392,7 +392,7 @@ class Being : public Sprite, public ConfigListener * Returns the X coordinate in pixels. */ int getPixelX() const - { return mPos.x; } + { return (int) mPos.x; } /** * Returns the Y coordinate in pixels. @@ -400,7 +400,7 @@ class Being : public Sprite, public ConfigListener * @see Sprite::getPixelY() */ int getPixelY() const - { return mPos.y; } + { return (int) mPos.y; } /** * Sets the position of this being. |