diff options
author | megamage <none@none> | 2009-05-06 16:27:07 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-05-06 16:27:07 -0500 |
commit | ec8367d2537b75d73ea15dab66866e1cbacf3396 (patch) | |
tree | ffe24986b0c241fe07f5f87bbf2cfa1ca2952173 /src/shared/vmap/CoordModelMapping.h | |
parent | b3de9cdff7581ae8e81313ba7db466987f593fd4 (diff) |
Backed out changeset: 7c8912b7d5c6
--HG--
branch : trunk
Diffstat (limited to 'src/shared/vmap/CoordModelMapping.h')
-rw-r--r-- | src/shared/vmap/CoordModelMapping.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/shared/vmap/CoordModelMapping.h b/src/shared/vmap/CoordModelMapping.h index fc06d646107..7c89f0e8a0f 100644 --- a/src/shared/vmap/CoordModelMapping.h +++ b/src/shared/vmap/CoordModelMapping.h @@ -24,12 +24,6 @@ #include <G3D/Table.h> #include <G3D/Array.h> -//#ifdef _DEBUG -//#define DEB(x) x -//#else -#define DEB(x) -//#endif - /** This Class is a helper Class to convert the raw vector data into BSP-Trees. We read the directory file of the raw data output and build logical groups. @@ -83,7 +77,7 @@ namespace VMAP static const std::string getKeyString(unsigned int pMapId, int pXPos, int pYPos) { char b[100]; -DEB( sprintf(b,"%03u_%d_%d", pMapId, pXPos, pYPos);) + sprintf(b,"%03u_%d_%d", pMapId, pXPos, pYPos); return(std::string(b)); } |