diff options
Diffstat (limited to 'src/shared/vmap/CoordModelMapping.h')
| -rw-r--r-- | src/shared/vmap/CoordModelMapping.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/shared/vmap/CoordModelMapping.h b/src/shared/vmap/CoordModelMapping.h index 7c89f0e8a0f..fc06d646107 100644 --- a/src/shared/vmap/CoordModelMapping.h +++ b/src/shared/vmap/CoordModelMapping.h @@ -24,6 +24,12 @@ #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. @@ -77,7 +83,7 @@ namespace VMAP static const std::string getKeyString(unsigned int pMapId, int pXPos, int pYPos) { char b[100]; - sprintf(b,"%03u_%d_%d", pMapId, pXPos, pYPos); +DEB( sprintf(b,"%03u_%d_%d", pMapId, pXPos, pYPos);) return(std::string(b)); } |
