From 3f8c0506fb9960bb3f12b61293ec6e91d14d6387 Mon Sep 17 00:00:00 2001 From: flippy84 Date: Sat, 21 Dec 2013 13:49:38 +0100 Subject: [PATCH] Update DetourNavMeshQuery.h Changed existing and existingSize parameters of finalizeSlicedFindPathPartial to @param[in] --- Detour/Include/DetourNavMeshQuery.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Detour/Include/DetourNavMeshQuery.h b/Detour/Include/DetourNavMeshQuery.h index d431bf1..6edf5bf 100644 --- a/Detour/Include/DetourNavMeshQuery.h +++ b/Detour/Include/DetourNavMeshQuery.h @@ -200,8 +200,8 @@ public: /// Finalizes and returns the results of an incomplete sliced path query, returning the path to the furthest /// polygon on the existing path that was visited during the search. - /// @param[out] existing An array of polygon references for the existing path. - /// @param[out] existingSize The number of polygon in the @p existing array. + /// @param[in] existing An array of polygon references for the existing path. + /// @param[in] existingSize The number of polygon in the @p existing array. /// @param[out] path An ordered list of polygon references representing the path. (Start to end.) /// [(polyRef) * @p pathCount] /// @param[out] pathCount The number of polygons returned in the @p path array.