aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.cpp')
-rw-r--r--src/ui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui.cpp b/src/ui.cpp
index ff48421..c0588ce 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -157,8 +157,8 @@ namespace ui {
if(SDL_KEY==SDLK_w)currentWorld=currentWorld->goInsideStructure(player);
if(SDL_KEY==SDLK_SPACE){ // Jump
if(player->ground){
- player->vel.y=.25;
- //player->loc.y+=HL
+ player->vel.y=.5;
+ player->loc.y+=HLINE*2;
player->ground=false;
}
}