diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-01 21:21:06 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-01 22:13:44 +0300 |
commit | 41ffafd17ad8f0a7ee060cc9f48bca04a1e16cb6 (patch) | |
tree | 75a934dd456f4079898b77f17fc2e5da631ba761 /src/being/being.cpp | |
parent | 33ef923235aeabd07308816bb07ef790cc6c1024 (diff) | |
download | plus-41ffafd17ad8f0a7ee060cc9f48bca04a1e16cb6.tar.gz plus-41ffafd17ad8f0a7ee060cc9f48bca04a1e16cb6.tar.bz2 plus-41ffafd17ad8f0a7ee060cc9f48bca04a1e16cb6.tar.xz plus-41ffafd17ad8f0a7ee060cc9f48bca04a1e16cb6.zip |
Fix code style.
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r-- | src/being/being.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index 471adedf9..4d45d19bd 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -1445,7 +1445,7 @@ void Being::logic() const int yOffset2 = yOffset - mSortOffsetY - mFixedOffsetY * mapTileSize / 2; */ const int halfTile = mapTileSize / 2; - const float offset2 = mOffsetY * abs(offset) / 2; + const float offset2 = static_cast<float>(mOffsetY * abs(offset)) / 2; mSortOffsetY = (mOldHeight - mFixedOffsetY + mOffsetY) * halfTile - offset2; const float yOffset3 = (mY + 1) * mapTileSize + yOffset |