Change initializer list to match declaration order

This commit is contained in:
Jonathan Adamczewski 2017-01-12 08:51:12 -08:00 committed by Ben Hymers
parent 34ab687e21
commit 2bc06ef314

View File

@ -41,11 +41,11 @@ Sample::Sample() :
m_navQuery(0), m_navQuery(0),
m_crowd(0), m_crowd(0),
m_navMeshDrawFlags(DU_DRAWNAVMESH_OFFMESHCONS|DU_DRAWNAVMESH_CLOSEDLIST), m_navMeshDrawFlags(DU_DRAWNAVMESH_OFFMESHCONS|DU_DRAWNAVMESH_CLOSEDLIST),
m_tool(0),
m_ctx(0),
m_filterLowHangingObstacles(true), m_filterLowHangingObstacles(true),
m_filterLedgeSpans(true), m_filterLedgeSpans(true),
m_filterWalkableLowHeightSpans(true) m_filterWalkableLowHeightSpans(true),
m_tool(0),
m_ctx(0)
{ {
resetCommonSettings(); resetCommonSettings();
m_navQuery = dtAllocNavMeshQuery(); m_navQuery = dtAllocNavMeshQuery();