From 030974fa55d3fdb19ccc3cc75f4544c9b1ec903c Mon Sep 17 00:00:00 2001 From: Mikko Mononen Date: Fri, 15 Oct 2010 07:01:01 +0000 Subject: [PATCH] Fix for Issue 130. --- Detour/Include/DetourNavMesh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Detour/Include/DetourNavMesh.h b/Detour/Include/DetourNavMesh.h index 6b96e55..1533e97 100644 --- a/Detour/Include/DetourNavMesh.h +++ b/Detour/Include/DetourNavMesh.h @@ -34,7 +34,7 @@ typedef unsigned int dtTileRef; static const int DT_VERTS_PER_POLYGON = 6; static const int DT_NAVMESH_MAGIC = 'D'<<24 | 'N'<<16 | 'A'<<8 | 'V'; //'DNAV'; -static const int DT_NAVMESH_VERSION = 4; +static const int DT_NAVMESH_VERSION = 5; static const int DT_NAVMESH_STATE_MAGIC = 'D'<<24 | 'N'<<16 | 'M'<<8 | 'S'; //'DNMS'; static const int DT_NAVMESH_STATE_VERSION = 1;