2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 19:07:46 +00:00

CPathFindRegion: Resolve sign conversion warning

The only place this is used is in an unsigned context.
This commit is contained in:
Lioncash
2020-05-08 15:49:27 -04:00
parent dc8a0d0d88
commit ed37919018
2 changed files with 7 additions and 4 deletions

View File

@@ -72,7 +72,7 @@ public:
bool) const;
bool FindBestPoint(std::vector<zeus::CVector3f>& polyPoints, const zeus::CVector3f& point, u32 flags,
float paddingSq) const;
void SetLinkTo(s32 idx);
void SetLinkTo(u32 idx);
void DropToGround(zeus::CVector3f& point) const;
zeus::CVector3f GetLinkMidPoint(const CPFLink& link) const;
zeus::CVector3f FitThroughLink2d(const zeus::CVector3f& p1, const CPFLink& link, const zeus::CVector3f& p2,