From 3641a74507d692a7fbababfd8beb738f71e48acb Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Tue, 28 Aug 2007 16:42:47 +0000 Subject: Added Vector class and used it in the particle engine. --- src/imageparticle.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/imageparticle.cpp') diff --git a/src/imageparticle.cpp b/src/imageparticle.cpp index 35cc21ad..db38e395 100644 --- a/src/imageparticle.cpp +++ b/src/imageparticle.cpp @@ -44,8 +44,8 @@ void ImageParticle::draw(Graphics *graphics, int offsetX, int offsetY) const if (!mAlive) return; - int screenX = (int) mPosX + offsetX - mImage->getWidth() / 2; - int screenY = (int) mPosY - (int) mPosZ + offsetY - mImage->getHeight()/2; + int screenX = (int) mPos.x + offsetX - mImage->getWidth() / 2; + int screenY = (int) mPos.y - (int)mPos.z + offsetY - mImage->getHeight()/2; // Check if on screen if (screenX + mImage->getWidth() < 0 || -- cgit v1.2.3-60-g2f50