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/scene.cpp | |
| parent | f50804900157af65da50166325163444a78aaaec (diff) | |
pke: handle pk.h breaking changes
Diffstat (limited to 'src/scene.cpp')
| -rw-r--r-- | src/scene.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scene.cpp b/src/scene.cpp index 2c47356..6674c7f 100644 --- a/src/scene.cpp +++ b/src/scene.cpp @@ -101,7 +101,7 @@ void pke_scene_remove(SceneHandle handle) { PkeInput_UnregisterSet(scn->input_handles[i]); } if (scn->file_path.reserved > 0) { - pk_delete<char>(scn->file_path.val, scn->file_path.reserved); + pk_delete_arr<char>(scn->file_path.val, scn->file_path.reserved); } scn->file_path = {}; scn->name[0] = '\0'; |
