diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-02-29 16:04:38 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-02-29 16:04:38 -0500 |
commit | 0a0766a186db892f7a8f28f0130a043fd9b9dff9 (patch) | |
tree | 4959e3da621b3f92cf4336eefe61a0df53dcb493 /src | |
parent | 8a2517c3068bb8fc7b22a01a2f75ab5537342063 (diff) |
Stuff
Diffstat (limited to 'src')
-rw-r--r-- | src/world.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/world.cpp b/src/world.cpp index 971325c..b2e1cfb 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -333,12 +333,12 @@ void World::update(Player *p,unsigned int delta){ } for(unsigned int i=0;i<particles.size();i++){ - if(particles[i]->kill(deltaTime)){ + if(particles[i]->kill(delta)){ delete particles[i]; particles.erase(particles.begin()+i); }else if(particles[i]->canMove){ - particles[i]->loc.y += particles[i]->vely * deltaTime; - particles[i]->loc.x += particles[i]->velx * deltaTime; + particles[i]->loc.y += particles[i]->vely * delta; + particles[i]->loc.x += particles[i]->velx * delta; for(auto &b : build){ if(b->bsubtype==FOUNTAIN){ |