diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-08 09:29:22 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-08 09:29:22 -0400 |
commit | 01a31f374b953b9d40548f8369289a8c6dc48b77 (patch) | |
tree | 20b6d58d83738c02c15fe45db464107a0f98dea3 /src/world.cpp | |
parent | e1982d3eb176d73e3bad2a344be8b12107b1c876 (diff) |
fixed mouse
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 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 |