Skip to content

Commit 85aa1ee

Browse files
Fix build
1 parent 9b35ba8 commit 85aa1ee

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

config/G2ME01/symbols.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ __ct__10CAxisAngleFRC9CVector3f = .text:0x8001D3E4; // type:function size:0x1C
537537
fn_8001D400 = .text:0x8001D400; // type:function size:0x30 align:4
538538
fn_8001D430 = .text:0x8001D430; // type:function size:0xFC align:4
539539
fn_8001D52C = .text:0x8001D52C; // type:function size:0x12C
540-
SqrtF__5CMathFf = .text:0x8001D658; // type:function size:0x20
540+
fn_8001D658 = .text:0x8001D658; // type:function size:0x20
541541
fn_8001D678 = .text:0x8001D678; // type:function size:0xE4
542542
fn_8001D75C = .text:0x8001D75C; // type:function size:0x3C align:4
543543
fn_8001D798 = .text:0x8001D798; // type:function size:0x18 align:4

include/Kyoto/Math/CFrustumPlanes.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class CFrustumPlanes {
2121
float z;
2222
float d;
2323
};
24+
CFrustumPlanes(); // todo
2425
CFrustumPlanes(const CTransform4f&, float, float, float, bool, float);
2526

2627
bool BoxInFrustumPlanes(const CAABox& box) const;

src/MetroidPrime/CStateManager.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ CStateManager::CStateManager(const rstl::ncrc_ptr< CScriptMailbox >&,
2323
const rstl::ncrc_ptr< CMapWorldInfo >&,
2424
const rstl::ncrc_ptr< CPlayerState >&,
2525
const rstl::ncrc_ptr< CWorldTransManager >&)
26-
: m_nextFreeIndex(0), m_bossId(kInvalidUniqueId), m_uid_setBySpecialFunc(kInvalidUniqueId) {}
26+
: m_nextFreeIndex(0), m_bossId(kInvalidUniqueId), m_uid_setBySpecialFunc(kInvalidUniqueId),
27+
m_planes() {}
2728

2829
CStateManager::~CStateManager() {}
2930

src/MetroidPrime/ScriptObjects/CScriptPickup.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ void CScriptPickup::Render(const CStateManager& mgr) const { CActor::Render(mgr)
232232

233233
void CScriptPickup::AddToRenderer(const CFrustumPlanes& a, const CStateManager& mgr) const {
234234
if (IsVisible()) {
235-
CActor::AddToRenderer(a, mgr);
235+
CActor::AddToRenderer(mgr);
236236
}
237237
}
238238

0 commit comments

Comments
 (0)