From 2bc06ef3145f41da0d56da32276bcfe5fb2c67be Mon Sep 17 00:00:00 2001 From: Jonathan Adamczewski Date: Thu, 12 Jan 2017 08:51:12 -0800 Subject: [PATCH] Change initializer list to match declaration order --- RecastDemo/Source/Sample.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RecastDemo/Source/Sample.cpp b/RecastDemo/Source/Sample.cpp index 45075a7..2082b12 100644 --- a/RecastDemo/Source/Sample.cpp +++ b/RecastDemo/Source/Sample.cpp @@ -41,11 +41,11 @@ Sample::Sample() : m_navQuery(0), m_crowd(0), m_navMeshDrawFlags(DU_DRAWNAVMESH_OFFMESHCONS|DU_DRAWNAVMESH_CLOSEDLIST), - m_tool(0), - m_ctx(0), m_filterLowHangingObstacles(true), m_filterLedgeSpans(true), - m_filterWalkableLowHeightSpans(true) + m_filterWalkableLowHeightSpans(true), + m_tool(0), + m_ctx(0) { resetCommonSettings(); m_navQuery = dtAllocNavMeshQuery();