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/particle/particle.cpp | |
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/particle/particle.cpp')
-rw-r--r-- | src/particle/particle.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/particle/particle.cpp b/src/particle/particle.cpp index 7bdc24345..99e4117ae 100644 --- a/src/particle/particle.cpp +++ b/src/particle/particle.cpp @@ -98,9 +98,8 @@ void Particle::setupEngine() logger->log1("Particle engine set up"); } -bool Particle::draw(Graphics *const, const int, const int) const +void Particle::draw(Graphics *const, const int, const int) const { - return false; } bool Particle::update() |