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/imagesprite.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/imagesprite.h')
-rw-r--r-- | src/imagesprite.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imagesprite.h b/src/imagesprite.h index e51878e31..24df11aab 100644 --- a/src/imagesprite.h +++ b/src/imagesprite.h @@ -46,7 +46,7 @@ public: bool update(const int time A_UNUSED) override final { return false; } - bool draw(Graphics *const graphics, + void draw(Graphics *const graphics, const int posX, const int posY) const override final; int getWidth() const override final A_WARN_UNUSED |