(svn r67) -Forget to change debug message for grfspecial.c

-Added compile flag NO_DEBUG_MESSAGES which will strip executeable of all DEBUG(..,..)'s
This commit is contained in:
darkvater
2004-08-16 15:13:46 +00:00
parent 68c9b7c3ad
commit 4587ede35d
3 changed files with 6 additions and 5 deletions

View File

@@ -150,7 +150,6 @@ static void Place_LandInfo(uint tile)
GetTileDesc(tile, &lid.td);
#if defined(_DEBUG)
{
DEBUG(misc, 0) ("TILE: %#x (%i,%i)", tile, GET_TILE_X(tile), GET_TILE_Y(tile));
DEBUG(misc, 0) ("_map_type_and_height=%#x", _map_type_and_height[tile]);
DEBUG(misc, 0) ("_map2=%#x", _map2[tile]);
@@ -158,7 +157,6 @@ static void Place_LandInfo(uint tile)
DEBUG(misc, 0) ("_map3_hi=%#x", _map3_hi[tile]);
DEBUG(misc, 0) ("_map5=%#x", _map5[tile]);
DEBUG(misc, 0) ("_map_owner=%#x", _map_owner[tile]);
}
#endif
}