diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-27 16:24:01 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-03-27 16:24:01 -0600 |
commit | f67237cb69599753192c301f0f2eb38b88f7b57a (patch) | |
tree | a38b31447423e7971601f8a7e9528d204d7fcc26 /src/map.cpp | |
parent | 60f10c242fc4f99b0ab0f8d8c6d4b4acde0022cd (diff) | |
download | mana-f67237cb69599753192c301f0f2eb38b88f7b57a.tar.gz mana-f67237cb69599753192c301f0f2eb38b88f7b57a.tar.bz2 mana-f67237cb69599753192c301f0f2eb38b88f7b57a.tar.xz mana-f67237cb69599753192c301f0f2eb38b88f7b57a.zip |
Clean up some ifdefs and start cleanup of parties
Diffstat (limited to 'src/map.cpp')
-rw-r--r-- | src/map.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/map.cpp b/src/map.cpp index 59e6201f..8f736424 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -141,11 +141,7 @@ void MapLayer::draw(Graphics *graphics, int startX, int startY, // tiles have been drawn if (mIsFringeLayer) { -#ifdef TMWSERV_SUPPORT while (si != sprites.end() && (*si)->getPixelY() <= y * 32) -#else - while (si != sprites.end() && (*si)->getPixelY() <= y * 32) -#endif { (*si)->draw(graphics, -scrollX, -scrollY); si++; |