diff options
| author | elijah-thomas774 <elijahthomas774@gmail.com> | 2026-05-24 15:02:22 -0400 |
|---|---|---|
| committer | elijah-thomas774 <elijahthomas774@gmail.com> | 2026-05-24 20:34:43 -0400 |
| commit | 45cc86893d40285ef48d7da8107ce9f8011c68f4 (patch) | |
| tree | 00539eed6018551354a521ad11698b9de8402731 /include/toBeSorted | |
| parent | c15f7fb519b46f64f0de51063b2adb270f730b10 (diff) | |
ActorOnRail_Ext getPoint Inline return type change to mVec3_c* instead of Vec*
Diffstat (limited to 'include/toBeSorted')
| -rw-r--r-- | include/toBeSorted/d_path.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/toBeSorted/d_path.h b/include/toBeSorted/d_path.h index 6337f5b4..9f4e7fbb 100644 --- a/include/toBeSorted/d_path.h +++ b/include/toBeSorted/d_path.h @@ -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 { |
