From 1202ee641a85963764dbd464e4e0fc71d1fad524 Mon Sep 17 00:00:00 2001 From: Mikko Mononen Date: Thu, 28 Jan 2010 10:18:12 +0000 Subject: [PATCH] Removed debug printfs. --- Detour/Source/DetourNavMeshBuilder.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Detour/Source/DetourNavMeshBuilder.cpp b/Detour/Source/DetourNavMeshBuilder.cpp index 83ccdfa..7211c2b 100644 --- a/Detour/Source/DetourNavMeshBuilder.cpp +++ b/Detour/Source/DetourNavMeshBuilder.cpp @@ -264,14 +264,11 @@ bool dtCreateNavMeshData(dtNavMeshCreateParams* params, unsigned char** outData, int storedOffMeshConCount = 0; int offMeshConLinkCount = 0; - printf("classify\n"); for (int i = 0; i < params->offMeshConCount; ++i) { offMeshConFlags[i*2+0] = classifyOffMeshPoint(¶ms->offMeshConVerts[(i*2+0)*3], params->bmin, params->bmax); offMeshConFlags[i*2+1] = classifyOffMeshPoint(¶ms->offMeshConVerts[(i*2+1)*3], params->bmin, params->bmax); - printf(" %d, %d\n", (int)offMeshConFlags[i*2+0], (int)offMeshConFlags[i*2+1]); - // Cound how many links should be allocated for off-mesh connections. if (offMeshConFlags[i*2+0] == 0xff) offMeshConLinkCount++;