diff options
Diffstat (limited to 'src/World.cpp')
-rw-r--r-- | src/World.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/World.cpp b/src/World.cpp index ce6a3c7..8083d47 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -116,7 +116,7 @@ void World::detect(vec2 *v,vec2 *vel,const float width){ return; // ;)
}
}else if(v->y>line[i].start+HLINE){ // Trashy gravity handling
- vel->y-=.00000001;
+ vel->y-=.0000001;
}
}
}
|