omg typos of tiredness

This commit is contained in:
False.Genesis 2007-06-29 23:12:22 +00:00
parent 16be9c5bcc
commit 13760afb96
3 changed files with 3 additions and 3 deletions

View File

@ -123,7 +123,7 @@ float MapMgr::GetZ(float x, float y)
MapTile *tile = _tiles->GetTile(xg,yg);
if(tile)
{
#ifndef _DEBUG
#ifdef _DEBUG
tile->DebugDumpToFile();
logdebug("DEBUG: tile dumped");
#endif

View File

@ -93,7 +93,7 @@ float MapTile::GetZ(float x, float y)
return real_z;
}
#ifndef _DEBUG
#ifdef _DEBUG
void MapTile::DebugDumpToFile(void)
{
const char *f = "0123456789abcdefghijklmnopqrstuvwxyz";

View File

@ -31,7 +31,7 @@ public:
void ImportFromADT(ADTFile*);
float GetZ(float,float);
#ifndef _DEBUG
#ifdef _DEBUG
void DebugDumpToFile(void);
#endif