diff options
author | megamage <none@none> | 2009-05-06 16:28:43 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-05-06 16:28:43 -0500 |
commit | da382aaf338841a05905c0aec2b5da65e464b858 (patch) | |
tree | c22d2944d66368de7f1e2d044f1f61169bb4f59b /src/shared/vmap/CoordModelMapping.h | |
parent | 50b336e2cd31b9ada15e5d76b509d53251a85cf1 (diff) | |
parent | ec8367d2537b75d73ea15dab66866e1cbacf3396 (diff) |
*Backout "Fix compile for gcc 4.4." because it causes uninitilized variables and may cause crash.
--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)); } |