aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-10-08 09:29:22 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-10-08 09:29:22 -0400
commit01a31f374b953b9d40548f8369289a8c6dc48b77 (patch)
tree20b6d58d83738c02c15fe45db464107a0f98dea3 /src/world.cpp
parente1982d3eb176d73e3bad2a344be8b12107b1c876 (diff)
fixed mouse
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 72287be..1498016 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -163,7 +163,7 @@ void World::singleDetect(Entity *e){
e->ground=true;
e->loc.y=line[i].y-.001*deltaTime;
if(e->type==STRUCTURET){
- std::cout<<e->loc.x<<" "<<e->loc.y<<std::endl;
+ //std::cout<<e->loc.x<<" "<<e->loc.y<<std::endl;
return;
}
}else if(e->loc.y>line[i].y-.002*deltaTime){ // Snap the player to the top of that line if the player is inside it