From f98d003e354a1792117b7cbc771d1dd91475a156 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 18 Mar 2011 17:48:29 +0200 Subject: Fix most old style cast except manaserv and libxml2 defines. --- src/textparticle.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/textparticle.cpp') 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(mPos.x) + offsetX; + int screenY = static_cast(mPos.y) - static_cast(mPos.z) + + offsetY; float alpha = mAlpha * 255.0f; -- cgit v1.2.3-60-g2f50