Skip to content

Commit 147e72b

Browse files
committed
xCutscene: Move XCSNNosey to header to match weak definitions
1 parent 7e0b3df commit 147e72b

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

src/SB/Core/x/xCutscene.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -318,11 +318,3 @@ xCutscene* xCutscene_CurrentCutscene()
318318
{
319319
return &sActiveCutscene;
320320
}
321-
322-
void XCSNNosey::CanRenderNow()
323-
{
324-
}
325-
326-
void XCSNNosey::UpdatedAnimated(RpAtomic*, RwMatrixTag*, U32, U32)
327-
{
328-
}

src/SB/Core/x/xCutscene.h

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,13 @@ struct XCSNNosey
5656
void* userdata;
5757
S32 flg_nosey;
5858

59-
void CanRenderNow();
60-
void UpdatedAnimated(RpAtomic*, RwMatrixTag*, U32, U32);
59+
void CanRenderNow()
60+
{
61+
}
62+
63+
void UpdatedAnimated(RpAtomic*, RwMatrixTag*, U32, U32)
64+
{
65+
}
6166
};
6267

6368
struct xCutscene

0 commit comments

Comments
 (0)