summaryrefslogtreecommitdiff
path: root/include/SSystem
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2025-11-23 18:23:44 -0500
committerGitHub <noreply@github.com>2025-11-23 15:23:44 -0800
commit8d53f6dd591abb21e9474a5ad85ee19eb58f2e50 (patch)
treefa0119425e15c8be3f7833b6b4379b8eb50412cc /include/SSystem
parenteaf980174f97ca1ee08df8c93a4459fba9527bad (diff)
Fix more nonmatchings (#2850)
* Fix GetPolyIndex and GetBgIndex, fixing a couple regallocs * Match daNpcCd2_c::checkFearSituation and daNpcCd2_c::getAnmP * Match daAlink_c::jointControll * Clean up float class checks * Move float constants to global.h
Diffstat (limited to 'include/SSystem')
-rw-r--r--include/SSystem/SComponent/c_bg_s_poly_info.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/SSystem/SComponent/c_bg_s_poly_info.h b/include/SSystem/SComponent/c_bg_s_poly_info.h
index 1693b5e058..a0fbf35aba 100644
--- a/include/SSystem/SComponent/c_bg_s_poly_info.h
+++ b/include/SSystem/SComponent/c_bg_s_poly_info.h
@@ -23,8 +23,8 @@ public:
virtual ~cBgS_PolyInfo();
- u16 GetPolyIndex() const { return mPolyIndex; }
- u16 GetBgIndex() const { return mBgIndex; }
+ int GetPolyIndex() const { return mPolyIndex; }
+ int GetBgIndex() const { return mBgIndex; }
}; // Size: 0x10
#endif /* C_BG_S_POLY_INFO_H */