From abc8b0db1ec8a1773ddc697b8ec5381e5f4e2964 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Tue, 16 Jul 2024 02:40:32 +0200 Subject: [PATCH] Recast: fix formatting in recast debug draw --- src/thirdparty/recast/DebugUtils/Source/RecastDebugDraw.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/thirdparty/recast/DebugUtils/Source/RecastDebugDraw.cpp b/src/thirdparty/recast/DebugUtils/Source/RecastDebugDraw.cpp index 4631ef10..115aab97 100644 --- a/src/thirdparty/recast/DebugUtils/Source/RecastDebugDraw.cpp +++ b/src/thirdparty/recast/DebugUtils/Source/RecastDebugDraw.cpp @@ -696,7 +696,7 @@ void duDebugDrawPolyMesh(duDebugDraw* dd, const struct rcPolyMesh& mesh, const f const float x = orig[0] + v[0]*cs; const float y = orig[1] + v[1]*cs; const float z = orig[2] +(v[2]+1)*ch+0.1f; - dd->vertex(x, y, z, coln); + dd->vertex(x,y,z, coln); } } } @@ -724,7 +724,7 @@ void duDebugDrawPolyMesh(duDebugDraw* dd, const struct rcPolyMesh& mesh, const f const float x = orig[0] + v[0]*cs; const float y = orig[1] + v[1]*cs; const float z = orig[2] +(v[2]+1)*ch+0.1f; - dd->vertex(x, y, z, col); + dd->vertex(x,y,z, col); } } }