From b83ff695890e4f971cec4661ce07308e95ceb925 Mon Sep 17 00:00:00 2001 From: hatal175 Date: Fri, 11 Jul 2025 11:11:21 +0300 Subject: Improve various partially matched TUs (#2526) --- include/SSystem/SComponent/c_m3d_g_aab.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/SSystem') diff --git a/include/SSystem/SComponent/c_m3d_g_aab.h b/include/SSystem/SComponent/c_m3d_g_aab.h index 43ae9226c2..6317065a31 100644 --- a/include/SSystem/SComponent/c_m3d_g_aab.h +++ b/include/SSystem/SComponent/c_m3d_g_aab.h @@ -26,9 +26,9 @@ public: void CalcCenter(cXyz*) const; void PlusR(f32); const cXyz* GetMaxP(void) const { return &mMax; } - const cXyz* GetMaxP(void) { return &mMax; } + cXyz* GetMaxP(void) { return &mMax; } const cXyz* GetMinP(void) const { return &mMin; } - const cXyz* GetMinP(void) { return &mMin; } + cXyz* GetMinP(void) { return &mMin; } const f32 GetMaxX(void) const { return mMax.x; } const f32 GetMaxY(void) const { return mMax.y; } const f32 GetMaxZ(void) const { return mMax.z; } -- cgit v1.2.3