diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2025-09-24 11:19:34 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2025-09-24 11:19:34 -0400 |
| commit | c58e91fee38659c6b2b262e6670af9d7a1d663b7 (patch) | |
| tree | e8a72f07b98bdc668181de7441c5cc3a0e228911 /src/ecs.cpp | |
| parent | b1409537eb5a3bbdbae892cf3f6a451dee5472a9 (diff) | |
pke: ui button text serialization first-pass
Diffstat (limited to 'src/ecs.cpp')
| -rw-r--r-- | src/ecs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ecs.cpp b/src/ecs.cpp index b4391dc..6fcbeb4 100644 --- a/src/ecs.cpp +++ b/src/ecs.cpp @@ -634,7 +634,7 @@ pke_component_event *ECS_CreateEv(Entity_Base *entity, pk_uuid uuid) { } pke_component_event *ECS_GetEv(PkeEventHandle handle) { - if (handle == PkeEventMgrHandle_MAX) return nullptr; + if (handle == PkeEventHandle_MAX) return nullptr; assert(pk_bkt_arr_handle_validate(&ecs.bc.ev_mgrs, handle) == PK_BKT_ARR_HANDLE_VALIDATION_VALID); auto *ev_mgr = &ecs.bc.ev_mgrs[handle]; |
