1
0
mirror of https://github.com/Mauler125/r5sdk.git synced 2025-02-09 19:15:03 +01:00

Recast: fix formatting in recast debug draw

This commit is contained in:
Kawe Mazidjatari 2024-07-16 02:40:32 +02:00
parent 4605fcf227
commit abc8b0db1e

@ -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);
}
}
}