summaryrefslogtreecommitdiff
path: root/src/d/d_s_name.cpp
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2024-04-17 13:27:52 -0400
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2024-04-17 13:27:52 -0400
commita116292705d0c04d6ef9765c9b637900062fc825 (patch)
tree08c743d0584c25fbd1b09c92d989e7a448c9a9d6 /src/d/d_s_name.cpp
parent2b71216c8b1c3523888e137a4e50c40a7b739ec1 (diff)
add static keyword in more places
Diffstat (limited to 'src/d/d_s_name.cpp')
-rw-r--r--src/d/d_s_name.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/d/d_s_name.cpp b/src/d/d_s_name.cpp
index 278c2913..e5c08614 100644
--- a/src/d/d_s_name.cpp
+++ b/src/d/d_s_name.cpp
@@ -750,28 +750,28 @@ void dScnName_c::changeGameScene() {
}
/* 80232338-80232358 .text dScnName_Draw__FP10dScnName_c */
-s32 dScnName_Draw(dScnName_c* i_this) {
+static s32 dScnName_Draw(dScnName_c* i_this) {
return i_this->draw();
}
/* 80232358-80232378 .text dScnName_Execute__FP10dScnName_c */
-s32 dScnName_Execute(dScnName_c* i_this) {
+static s32 dScnName_Execute(dScnName_c* i_this) {
return i_this->execute();
}
/* 80232378-80232380 .text dScnName_IsDelete__FP10dScnName_c */
-s32 dScnName_IsDelete(dScnName_c*) {
+static s32 dScnName_IsDelete(dScnName_c*) {
return 1;
}
/* 80232380-802323A8 .text dScnName_Delete__FP10dScnName_c */
-s32 dScnName_Delete(dScnName_c* i_this) {
+static s32 dScnName_Delete(dScnName_c* i_this) {
i_this->~dScnName_c();
return 1;
}
/* 802323A8-802323F8 .text dScnName_Create__FP11scene_class */
-s32 dScnName_Create(scene_class* i_scn) {
+static s32 dScnName_Create(scene_class* i_scn) {
dScnName_c* i_this = new (i_scn) dScnName_c();
return i_this->create();
}