diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-18 18:42:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:21 +0300 |
commit | 2033ce76a8fba2148bc034d16e1d226bc757c47f (patch) | |
tree | 08a53fde19959fc72c09c42b457f63d63aba291d /src/particle/particle.h | |
parent | e441e9e40d27930f3533ffecfa2a48e4fd312f4c (diff) | |
download | plus-2033ce76a8fba2148bc034d16e1d226bc757c47f.tar.gz plus-2033ce76a8fba2148bc034d16e1d226bc757c47f.tar.bz2 plus-2033ce76a8fba2148bc034d16e1d226bc757c47f.tar.xz plus-2033ce76a8fba2148bc034d16e1d226bc757c47f.zip |
remove virtual methos call from particle constructor.
Diffstat (limited to 'src/particle/particle.h')
-rw-r--r-- | src/particle/particle.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/particle/particle.h b/src/particle/particle.h index 7c891dd86..a22fe7041 100644 --- a/src/particle/particle.h +++ b/src/particle/particle.h @@ -72,12 +72,7 @@ class Particle : public Actor static bool enabled; // true when non-crucial particle effects // are disabled - /** - * Constructor. - * - * @param map the map this particle will add itself to, may be nullptr - */ - explicit Particle(Map *const map); + Particle(); A_DELETE_COPY(Particle) |