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_ff.cpp | |
| parent | 421a6bd3df8a8ab172ad13efd32e5249138e7948 (diff) | |
Add return type and static keyword to common actor static funcs
Diffstat (limited to 'src/d/actor/d_a_ff.cpp')
| -rw-r--r-- | src/d/actor/d_a_ff.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/d/actor/d_a_ff.cpp b/src/d/actor/d_a_ff.cpp index 8e44b96f..2235f859 100644 --- a/src/d/actor/d_a_ff.cpp +++ b/src/d/actor/d_a_ff.cpp @@ -17,7 +17,7 @@ void z_check(ff_class*, cXyz*) { } /* 000002EC-0000037C .text daFf_Draw__FP8ff_class */ -void daFf_Draw(ff_class*) { +static BOOL daFf_Draw(ff_class*) { /* Nonmatching */ } @@ -27,26 +27,26 @@ void fire_fly_move(ff_class*) { } /* 00001098-00001168 .text daFf_Execute__FP8ff_class */ -void daFf_Execute(ff_class*) { +static BOOL daFf_Execute(ff_class*) { /* Nonmatching */ } /* 00001168-00001170 .text daFf_IsDelete__FP8ff_class */ -void daFf_IsDelete(ff_class*) { +static BOOL daFf_IsDelete(ff_class*) { /* Nonmatching */ } /* 00001170-000011AC .text daFf_Delete__FP8ff_class */ -void daFf_Delete(ff_class*) { +static BOOL daFf_Delete(ff_class*) { /* Nonmatching */ } /* 000011AC-0000138C .text useHeapInit__FP10fopAc_ac_c */ -void useHeapInit(fopAc_ac_c*) { +static BOOL useHeapInit(fopAc_ac_c*) { /* Nonmatching */ } /* 000013D4-0000164C .text daFf_Create__FP10fopAc_ac_c */ -void daFf_Create(fopAc_ac_c*) { +static s32 daFf_Create(fopAc_ac_c*) { /* Nonmatching */ } |
