aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-12-14 08:46:53 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-12-14 08:46:53 -0500
commitbdf7afae547976b99962769e75ec970729b556dc (patch)
tree8742faec62bfbcfb326e1a6ba6f43d3ac3d4a0b0 /src/world.cpp
parent840cf5f0d3fc60aceb95385010eac02ae6c95dcc (diff)
Added Particles
Diffstat (limited to 'src/world.cpp')
-rw-r--r--src/world.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/world.cpp b/src/world.cpp
index 6909cf7..1b460a2 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -109,11 +109,10 @@ void World::deleteEntities(void){
while(!entity.empty()){
entity.pop_back();
}
-
while(!particles.empty()){
delete particles.back();
particles.pop_back();
- }//particles.clear();
+ }
}
World::~World(void){