diff options
-rw-r--r-- | src/World.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/World.cpp b/src/World.cpp index 790a8e0..0ee8658 100644 --- a/src/World.cpp +++ b/src/World.cpp @@ -59,7 +59,7 @@ LOOP: if(cur->behind){
drawOffsetX+=(cur->getWidth()-cur->behind->getWidth())/2;
drawOffsetY+=.3;
- hline/=2;
+ //hline/=2;
cur=cur->behind;
goto LOOP;
//behind->draw();
@@ -86,7 +86,7 @@ LOOP2: cur=cur->infront;
drawOffsetX-=(cur->getWidth()-cur->behind->getWidth())/2;
drawOffsetY-=.3;
- hline*=2;
+ //hline*=2;
goto LOOP2;
}else{
drawOffsetX=drawOffsetY=0;
|