Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/extern
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-09-13 20:54:01 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-09-13 20:54:01 +0400
commit7548333b55253b3ff79da2d3f0be5d6858aabaa0 (patch)
treea855fc976a21b2a0edae774743b8302695d3e9e6 /extern
parenta47144a8d28705960cc546426b387a936bed3b19 (diff)
Fix typo in own commit for raycast library
Diffstat (limited to 'extern')
-rw-r--r--extern/recastnavigation/Detour/Include/DetourTileNavMesh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/recastnavigation/Detour/Include/DetourTileNavMesh.h b/extern/recastnavigation/Detour/Include/DetourTileNavMesh.h
index 305c61e5eb5..50ccdd118e8 100644
--- a/extern/recastnavigation/Detour/Include/DetourTileNavMesh.h
+++ b/extern/recastnavigation/Detour/Include/DetourTileNavMesh.h
@@ -36,7 +36,7 @@ static const int DT_TILE_VERTS_PER_POLYGON = 6;
static const int DT_MAX_TILES = 1 << DT_TILE_REF_TILE_BITS;
static const int DT_MAX_POLYGONS = 1 << DT_TILE_REF_POLY_BITS;
-static const int DT_TILE_NAVMESH_MAGIC = (('N'<<24) | ('A'<<16) | ('V'<<8) | 'M');
+static const int DT_TILE_NAVMESH_MAGIC = (('N'<<24) | ('A'<<16) | ('V'<<8) | 'T');
static const int DT_TILE_NAVMESH_VERSION = 2;
// Structure holding the navigation polygon data.