diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-12-29 13:39:55 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-12-29 13:39:55 -0500 |
| commit | a7421f5f6631a82d8aa593c09731cb50e4ce8a2c (patch) | |
| tree | 03eb28f216c26a06d8282ab8980d56cd3034b45d /src/d/actor/d_a_kamome.cpp | |
| parent | ab23a2693da304f5b4ec9bfd08b30e4f5430a23b (diff) | |
Add UNUSED macro, enable clangd unused parameter warnings
Diffstat (limited to 'src/d/actor/d_a_kamome.cpp')
| -rw-r--r-- | src/d/actor/d_a_kamome.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/d/actor/d_a_kamome.cpp b/src/d/actor/d_a_kamome.cpp index 5453fdab..7d787bac 100644 --- a/src/d/actor/d_a_kamome.cpp +++ b/src/d/actor/d_a_kamome.cpp @@ -114,6 +114,7 @@ fopAc_ac_c* search_esa(kamome_class* i_this) { /* 00000A44-00000A90 .text s_a_i_sub__FPvPv */ void* s_a_i_sub(void* ac1, void* ac2) { + UNUSED(ac2); if (fopAc_IsActor(ac1) && fpcM_GetName(ac1) == PROC_NPC_LS1) { return ac1; } @@ -257,6 +258,7 @@ void kamome_ground_pos_move(kamome_class* i_this) { /* 00001150-000011B8 .text ko_s_sub__FPvPv */ void* ko_s_sub(void* ac1, void* ac2) { + UNUSED(ac2); kamome_class* i_this = (kamome_class*)ac1; if (fopAcM_IsActor(&i_this->actor) && fopAcM_GetName(&i_this->actor) == PROC_KAMOME && (fopAcM_GetParam(&i_this->actor) & 0xf) == 7) { ko_count++; @@ -292,6 +294,7 @@ void heisou_control(kamome_class* i_this) { /* 00001304-00001360 .text h_s_sub__FPvPv */ void* h_s_sub(void* ac1, void* ac2) { + UNUSED(ac2); kamome_class* i_this = (kamome_class*)ac1; if (fopAcM_IsActor(&i_this->actor) && fopAcM_GetName(&i_this->actor) == PROC_KAMOME && (fopAcM_GetParam(&i_this->actor) & 0xf) == 6) { return &i_this->actor; |
