diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-04-17 13:27:52 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-04-17 13:27:52 -0400 |
| commit | a116292705d0c04d6ef9765c9b637900062fc825 (patch) | |
| tree | 08c743d0584c25fbd1b09c92d989e7a448c9a9d6 /src/d/d_s_play.cpp | |
| parent | 2b71216c8b1c3523888e137a4e50c40a7b739ec1 (diff) | |
add static keyword in more places
Diffstat (limited to 'src/d/d_s_play.cpp')
| -rw-r--r-- | src/d/d_s_play.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/d/d_s_play.cpp b/src/d/d_s_play.cpp index 44721754..e91c61d0 100644 --- a/src/d/d_s_play.cpp +++ b/src/d/d_s_play.cpp @@ -285,7 +285,7 @@ static request_of_phase_process_class dylPhase[PRELOAD_DYL_MAX]; static dScnPly_preLoad_HIO_c g_preLoadHIO; /* 80234B9C-80234FD0 .text dScnPly_Draw__FP13dScnPly_ply_c */ -int dScnPly_Draw(dScnPly_ply_c* i_this) { +static int dScnPly_Draw(dScnPly_ply_c* i_this) { dComIfG_Ccsp()->Move(); dComIfG_Bgsp()->ClrMoveFlag(); @@ -1023,7 +1023,7 @@ const PreLoadInfoT_s PreLoadInfoT[] = { }; /* 80234FD0-802350B4 .text dScnPly_Execute__FP13dScnPly_ply_c */ -int dScnPly_Execute(dScnPly_ply_c* i_this) { +static int dScnPly_Execute(dScnPly_ply_c* i_this) { if (!fopOvlpM_IsPeek()) { if (mDoAud_zelAudio_c::isBgmSet()) { mDoAud_sceneBgmStart(); @@ -1054,7 +1054,7 @@ int dScnPly_Execute(dScnPly_ply_c* i_this) { } /* 802350B4-802350BC .text dScnPly_IsDelete__FP13dScnPly_ply_c */ -int dScnPly_IsDelete(dScnPly_ply_c* i_this) { +static int dScnPly_IsDelete(dScnPly_ply_c* i_this) { return 1; } @@ -1062,7 +1062,7 @@ static s8 preLoadNo = 0xFF; static bool doPreLoad = true; /* 802350BC-80235364 .text dScnPly_Delete__FP13dScnPly_ply_c */ -BOOL dScnPly_Delete(dScnPly_ply_c* i_this) { +static BOOL dScnPly_Delete(dScnPly_ply_c* i_this) { dComIfGp_getAttention().~dAttention_c(); dComIfGp_getVibration().dVibration_c::~dVibration_c(); dComIfG_Bgsp()->Dt(); @@ -1474,7 +1474,7 @@ int phase_compleate(void* i_this) { } /* 8023655C-8023658C .text dScnPly_Create__FP11scene_class */ -int dScnPly_Create(scene_class* i_this) { +static int dScnPly_Create(scene_class* i_this) { static request_of_phase_process_fn l_method[] = { (request_of_phase_process_fn)phase_00, (request_of_phase_process_fn)phase_01, (request_of_phase_process_fn)phase_0, (request_of_phase_process_fn)phase_1, |
