diff options
Diffstat (limited to 'src/compoundsprite.cpp')
-rw-r--r-- | src/compoundsprite.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compoundsprite.cpp b/src/compoundsprite.cpp index a6f0c3d77..53caedc47 100644 --- a/src/compoundsprite.cpp +++ b/src/compoundsprite.cpp @@ -175,7 +175,7 @@ int CompoundSprite::getWidth() const for (SpriteConstIterator it = mSprites.begin(), it_end = mSprites.end(); it != it_end; ++ it) { - if ((base = (*it))) + if (base = *it) break; } @@ -192,7 +192,7 @@ int CompoundSprite::getHeight() const for (SpriteConstIterator it = mSprites.begin(), it_end = mSprites.end(); it != it_end; ++ it) { - if ((base = (*it))) + if (base = *it) break; } |