summaryrefslogtreecommitdiff
path: root/src/textparticle.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-03-18 17:48:29 +0200
committerAndrei Karas <akaras@inbox.ru>2011-03-18 17:49:00 +0200
commitf98d003e354a1792117b7cbc771d1dd91475a156 (patch)
treedc2a297f7c4026394c9954ae4bfd4abd22ef9612 /src/textparticle.cpp
parentbb0a6cb25b2985fd1f74c9d27d5a46f6863e2dee (diff)
downloadplus-f98d003e354a1792117b7cbc771d1dd91475a156.tar.gz
plus-f98d003e354a1792117b7cbc771d1dd91475a156.tar.bz2
plus-f98d003e354a1792117b7cbc771d1dd91475a156.tar.xz
plus-f98d003e354a1792117b7cbc771d1dd91475a156.zip
Fix most old style cast except manaserv and libxml2 defines.
Diffstat (limited to 'src/textparticle.cpp')
-rw-r--r--src/textparticle.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/textparticle.cpp b/src/textparticle.cpp
index 7e05d81c7..3b28e5e05 100644
--- a/src/textparticle.cpp
+++ b/src/textparticle.cpp
@@ -42,8 +42,9 @@ bool TextParticle::draw(Graphics *graphics, int offsetX, int offsetY) const
if (!isAlive())
return false;
- int screenX = (int) mPos.x + offsetX;
- int screenY = (int) mPos.y - (int) mPos.z + offsetY;
+ int screenX = static_cast<int>(mPos.x) + offsetX;
+ int screenY = static_cast<int>(mPos.y) - static_cast<int>(mPos.z)
+ + offsetY;
float alpha = mAlpha * 255.0f;