aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-12-01 08:20:31 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-12-01 08:20:31 -0500
commite02aaafad3ecef8752b538a2421c5e36fe4809c2 (patch)
tree1bcc3c138e12a6d81830b1d1ed44778e58558a69 /src/world.cpp
parent813f30f8d7e4db971fbb9aab429b489e884ad2e9 (diff)
Fixed gameloop timestep and updated animations
Diffstat (limited to 'src/world.cpp')
-rw-r--r--src/world.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.cpp b/src/world.cpp
index 36f0f69..281cbad 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -662,7 +662,7 @@ void World::singleDetect(Entity *e){
}else{
- if(e->vel.y > -2)e->vel.y-=.001 * deltaTime;
+ if(e->vel.y > -2)e->vel.y-=.003 * deltaTime;
}