diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-07-02 04:57:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-07-02 04:57:16 +0300 |
commit | 5f43cf85c7e59f0e1192f803560848777d64743f (patch) | |
tree | 283ddb56228ab7b19a62be6f6be0344e77745757 /src/imageparticle.cpp | |
parent | ca58a3cced99fc2a8989da0155c1927bc0f08b6f (diff) | |
download | plus-5f43cf85c7e59f0e1192f803560848777d64743f.tar.gz plus-5f43cf85c7e59f0e1192f803560848777d64743f.tar.bz2 plus-5f43cf85c7e59f0e1192f803560848777d64743f.tar.xz plus-5f43cf85c7e59f0e1192f803560848777d64743f.zip |
Replace some getters to direct members access in graphics class.
Diffstat (limited to 'src/imageparticle.cpp')
-rw-r--r-- | src/imageparticle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imageparticle.cpp b/src/imageparticle.cpp index e38dc8cb5..6f6217d82 100644 --- a/src/imageparticle.cpp +++ b/src/imageparticle.cpp @@ -76,9 +76,9 @@ bool ImageParticle::draw(Graphics *graphics, int offsetX, int offsetY) const // Check if on screen if (screenX + mImage->mBounds.w < 0 || - screenX > graphics->getWidth() || + screenX > graphics->mWidth || screenY + mImage->mBounds.h < 0 || - screenY > graphics->getHeight()) + screenY > graphics->mHeight) { return false; } |