diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-12-12 14:03:32 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-12-12 14:03:32 -0500 |
| commit | 29d768609375a5c9e01750a4be691b7b1c9434b5 (patch) | |
| tree | c6ed701ad69223fa1eef9425254a64c0ba86b160 /src/ecs.cpp | |
| parent | ba250cc496b2e617823ff8111ef463b6adea27f4 (diff) | |
use specific types for handle indexes consistently
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 fdc2473..1bd974b 100644 --- a/src/ecs.cpp +++ b/src/ecs.cpp @@ -12,7 +12,7 @@ #include <BulletCollision/CollisionShapes/btConvexHullShape.h> #include <glm/gtc/type_ptr.hpp> -const uint32_t maxBucketItemCount = 256; +const PkeHandleItemIndex_T maxBucketItemCount = 256; struct EntityBucket { Entity entities[maxBucketItemCount]; |
