summaryrefslogtreecommitdiff
path: root/src/map.cpp
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-03-27 16:24:01 -0600
committerJared Adams <jaxad0127@gmail.com>2009-03-27 16:24:01 -0600
commitf67237cb69599753192c301f0f2eb38b88f7b57a (patch)
treea38b31447423e7971601f8a7e9528d204d7fcc26 /src/map.cpp
parent60f10c242fc4f99b0ab0f8d8c6d4b4acde0022cd (diff)
downloadmana-client-f67237cb69599753192c301f0f2eb38b88f7b57a.tar.gz
mana-client-f67237cb69599753192c301f0f2eb38b88f7b57a.tar.bz2
mana-client-f67237cb69599753192c301f0f2eb38b88f7b57a.tar.xz
mana-client-f67237cb69599753192c301f0f2eb38b88f7b57a.zip
Clean up some ifdefs and start cleanup of parties
Diffstat (limited to 'src/map.cpp')
-rw-r--r--src/map.cpp4
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++;