ActorOnRail_Ext getPoint Inline return type change to mVec3_c* instead of Vec*

This commit is contained in:
elijah-thomas774
2026-05-24 15:02:22 -04:00
parent c15f7fb519
commit 45cc86893d
3 changed files with 7 additions and 8 deletions
+2 -2
View File
@@ -151,8 +151,8 @@ public:
mPath.getDirection(mSegmentIndex, mSegmentTime, result);
}
const Vec *getPoint(s32 idx) const {
return mPath.getPoint(idx);
const mVec3_c *getPoint(s32 idx) const {
return reinterpret_cast<const mVec3_c *>(mPath.getPoint(idx));
}
bool checkFlag(u32 flags) const {