diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-02-01 22:26:39 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-02-01 22:26:39 -0500 |
| commit | e8506099f04b247c5a50f3db61c2541198d657f3 (patch) | |
| tree | 6dc3fbd5b7e8e2f09d56202601d15bd1f8890861 /src/d/actor/d_a_npc_auction.cpp | |
| parent | 0a6ada87ccf069611d0d0ce72e5bac17e0b9785a (diff) | |
Add return type and static keyword for more static funcs
Diffstat (limited to 'src/d/actor/d_a_npc_auction.cpp')
| -rw-r--r-- | src/d/actor/d_a_npc_auction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_npc_auction.cpp b/src/d/actor/d_a_npc_auction.cpp index 8861068e..5553c1c6 100644 --- a/src/d/actor/d_a_npc_auction.cpp +++ b/src/d/actor/d_a_npc_auction.cpp @@ -42,12 +42,12 @@ void daNpcAuction_c::createHeap() { } /* 00000E74-00000E94 .text daNpcAuction_XyCheckCB__FPvi */ -void daNpcAuction_XyCheckCB(void*, int) { +static s16 daNpcAuction_XyCheckCB(void*, int) { /* Nonmatching */ } /* 00000E94-00000EB4 .text daNpcAuction_XyEventCB__FPvi */ -void daNpcAuction_XyEventCB(void*, int) { +static s16 daNpcAuction_XyEventCB(void*, int) { /* Nonmatching */ } |
