summaryrefslogtreecommitdiff
path: root/src/game/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/game.cpp')
-rw-r--r--src/game/game.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/game.cpp b/src/game/game.cpp
index 1619de0..285f75d 100644
--- a/src/game/game.cpp
+++ b/src/game/game.cpp
@@ -155,7 +155,7 @@ void state_t::tick(double now_, double dt_)
for (auto i = std::begin(effects); i != std::end(effects);) {
if (now > (*i)->ttl) {
(*i)->unlink();
- //delete *i; FIXME
+ delete *i;
i = effects.erase(i);
} else
i++;