diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-14 17:18:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-14 17:18:04 +0300 |
commit | 36de2c64d6bba077775360c9c0d681f0a096ffc3 (patch) | |
tree | e505ba9337b4eabb73d4d37cdc15d6e7c1f91727 /src/animatedsprite.h | |
parent | d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1 (diff) | |
download | plus-36de2c64d6bba077775360c9c0d681f0a096ffc3.tar.gz plus-36de2c64d6bba077775360c9c0d681f0a096ffc3.tar.bz2 plus-36de2c64d6bba077775360c9c0d681f0a096ffc3.tar.xz plus-36de2c64d6bba077775360c9c0d681f0a096ffc3.zip |
chnage return values for draw functions from bool to void.
Diffstat (limited to 'src/animatedsprite.h')
-rw-r--r-- | src/animatedsprite.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/animatedsprite.h b/src/animatedsprite.h index 7b92d5d0e..45af4eea2 100644 --- a/src/animatedsprite.h +++ b/src/animatedsprite.h @@ -69,7 +69,7 @@ class AnimatedSprite final : public Sprite bool update(const int time) override final; - bool draw(Graphics *const graphics, + void draw(Graphics *const graphics, const int posX, const int posY) const override final; int getWidth() const A_WARN_UNUSED; |