diff options
| author | hatal175 <hatal175@users.noreply.github.com> | 2025-07-11 11:11:21 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-11 01:11:21 -0700 |
| commit | b83ff695890e4f971cec4661ce07308e95ceb925 (patch) | |
| tree | b672ca4f98b1a5bcdfd203c93dd21f698b255631 /include/SSystem/SComponent | |
| parent | a11f8f63754993020cf1e84675c5fdba0e96b099 (diff) | |
Improve various partially matched TUs (#2526)
Diffstat (limited to 'include/SSystem/SComponent')
| -rw-r--r-- | include/SSystem/SComponent/c_m3d_g_aab.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |
