diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-11-30 15:54:02 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-11-30 15:54:02 -0500 |
| commit | a8d10408a2133674d8fc38e27c2f78673c34e448 (patch) | |
| tree | 3951f33c49c248b69a82a9f68422233203d4e712 /src/d/actor/d_a_btd.cpp | |
| parent | 421a6bd3df8a8ab172ad13efd32e5249138e7948 (diff) | |
Add return type and static keyword to common actor static funcs
Diffstat (limited to 'src/d/actor/d_a_btd.cpp')
| -rw-r--r-- | src/d/actor/d_a_btd.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/d/actor/d_a_btd.cpp b/src/d/actor/d_a_btd.cpp index 7fd46e1e..a87382be 100644 --- a/src/d/actor/d_a_btd.cpp +++ b/src/d/actor/d_a_btd.cpp @@ -37,7 +37,7 @@ void anm_init(btd_class*, int, float, unsigned char, float, int) { } /* 000003D4-00000778 .text nodeCallBack__FP7J3DNodei */ -void nodeCallBack(J3DNode*, int) { +static BOOL nodeCallBack(J3DNode*, int) { /* Nonmatching */ } @@ -47,7 +47,7 @@ void hahen_draw(btd_class*) { } /* 00000828-000009B4 .text daBtd_Draw__FP9btd_class */ -void daBtd_Draw(btd_class*) { +static BOOL daBtd_Draw(btd_class*) { /* Nonmatching */ } @@ -197,27 +197,27 @@ void btd_kankyo(btd_class*) { } /* 00007950-000081B8 .text daBtd_Execute__FP9btd_class */ -void daBtd_Execute(btd_class*) { +static BOOL daBtd_Execute(btd_class*) { /* Nonmatching */ } /* 000081B8-000081C0 .text daBtd_IsDelete__FP9btd_class */ -void daBtd_IsDelete(btd_class*) { +static BOOL daBtd_IsDelete(btd_class*) { /* Nonmatching */ } /* 000081C0-00008304 .text daBtd_Delete__FP9btd_class */ -void daBtd_Delete(btd_class*) { +static BOOL daBtd_Delete(btd_class*) { /* Nonmatching */ } /* 00008304-00008D30 .text useHeapInit__FP10fopAc_ac_c */ -void useHeapInit(fopAc_ac_c*) { +static BOOL useHeapInit(fopAc_ac_c*) { /* Nonmatching */ } /* 00008D78-000091D0 .text daBtd_Create__FP10fopAc_ac_c */ -void daBtd_Create(fopAc_ac_c*) { +static s32 daBtd_Create(fopAc_ac_c*) { /* Nonmatching */ } |
