diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2025-07-17 14:50:05 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2025-07-17 14:50:05 -0400 |
| commit | 8fbeadda53243b701957a26dba1113d84ad5c7c4 (patch) | |
| tree | d37007379260bd8e6ec2a9c24ff269a8b5875dff /src/player-input.cpp | |
| parent | f50804900157af65da50166325163444a78aaaec (diff) | |
pke: handle pk.h breaking changes
Diffstat (limited to 'src/player-input.cpp')
| -rw-r--r-- | src/player-input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/player-input.cpp b/src/player-input.cpp index 252d706..2274e70 100644 --- a/src/player-input.cpp +++ b/src/player-input.cpp @@ -676,7 +676,7 @@ void PkeInput_UnregisterSet(InputActionSetHandle handle) { if (pk_arr_find_first_index(&activeInputSetStack, &handle, PkeInput_pke_arr_find_first_handle) != uint32_t(-1)) { PkeInput_DeactivateSet(handle); } - pk_delete<PkeInputAction>(set.actions, set.actionCount); + pk_delete_arr<PkeInputAction>(set.actions, set.actionCount); pk_arr_remove_at(®isteredInputSets, index); } |
