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_dr2.cpp | |
| parent | 421a6bd3df8a8ab172ad13efd32e5249138e7948 (diff) | |
Add return type and static keyword to common actor static funcs
Diffstat (limited to 'src/d/actor/d_a_dr2.cpp')
| -rw-r--r-- | src/d/actor/d_a_dr2.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/d/actor/d_a_dr2.cpp b/src/d/actor/d_a_dr2.cpp index 531e2a63..094d9794 100644 --- a/src/d/actor/d_a_dr2.cpp +++ b/src/d/actor/d_a_dr2.cpp @@ -12,7 +12,7 @@ daDr2_HIO_c::daDr2_HIO_c() { } /* 00000110-00000380 .text nodeCallBack__FP7J3DNodei */ -void nodeCallBack(J3DNode*, int) { +static BOOL nodeCallBack(J3DNode*, int) { /* Nonmatching */ } @@ -37,7 +37,7 @@ void yuka_draw(dr2_class*) { } /* 0000064C-000006D4 .text daDr2_Draw__FP9dr2_class */ -void daDr2_Draw(dr2_class*) { +static BOOL daDr2_Draw(dr2_class*) { /* Nonmatching */ } @@ -72,27 +72,27 @@ void yuka_move(dr2_class*) { } /* 000019B8-00001B90 .text daDr2_Execute__FP9dr2_class */ -void daDr2_Execute(dr2_class*) { +static BOOL daDr2_Execute(dr2_class*) { /* Nonmatching */ } /* 00001B90-00001B98 .text daDr2_IsDelete__FP9dr2_class */ -void daDr2_IsDelete(dr2_class*) { +static BOOL daDr2_IsDelete(dr2_class*) { /* Nonmatching */ } /* 00001B98-00001C58 .text daDr2_Delete__FP9dr2_class */ -void daDr2_Delete(dr2_class*) { +static BOOL daDr2_Delete(dr2_class*) { /* Nonmatching */ } /* 00001C58-00002458 .text useHeapInit__FP10fopAc_ac_c */ -void useHeapInit(fopAc_ac_c*) { +static BOOL useHeapInit(fopAc_ac_c*) { /* Nonmatching */ } /* 000024A0-00002668 .text daDr2_Create__FP10fopAc_ac_c */ -void daDr2_Create(fopAc_ac_c*) { +static s32 daDr2_Create(fopAc_ac_c*) { /* Nonmatching */ } |
