diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-12 20:02:25 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-12 20:02:25 -0400 |
commit | 9e04811e52203e4b814c6668208931aeeb8e752e (patch) | |
tree | fa7358f95aa4b0ff3470e2ea79c471115b5d12c4 /src/World.cpp | |
parent | d6412a6210d4fa25f8c97a98132d27db66ca4514 (diff) |
mm
Diffstat (limited to 'src/World.cpp')
-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;
|