summaryrefslogtreecommitdiff
path: root/src/level-types.hpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2024-01-11 11:13:15 -0500
committerJonathan Bradley <jcb@pikum.xyz>2024-01-11 11:13:15 -0500
commitcce568a7f56861d6249d7445f51d0ed27c560a5c (patch)
treedc16d597f2b5ba37935993add262bff28dc2ca44 /src/level-types.hpp
parentf07294ca65143fac8b1b426d1854212403721226 (diff)
checkpoint - mostly working condition after changes
Diffstat (limited to 'src/level-types.hpp')
-rw-r--r--src/level-types.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/level-types.hpp b/src/level-types.hpp
index 0809572..42c169b 100644
--- a/src/level-types.hpp
+++ b/src/level-types.hpp
@@ -13,7 +13,7 @@ struct LvlCamArr : public PkeArray<CameraHandle> { };
struct PkeLevel : public Entity_Base {
MemBucket *bkt = nullptr;
- char name[16] = {};
+ char name[16] = {'\0'};
LevelHandle levelHandle = LevelHandle_MAX;
LvlCamArr cameras;
};