1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-09 06:29:33 +00:00

Merge pull request #580 from TomHarte/NameInitialisation

Ensures offset and flags are initialised to 0.
This commit is contained in:
Thomas Harte 2018-10-29 22:10:28 -04:00 committed by GitHub
commit b9a752fda1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -211,8 +211,8 @@ class Base {
// The names array holds pattern names, as an offset into memory, and
// potentially flags also.
struct {
size_t offset;
uint8_t flags;
size_t offset = 0;
uint8_t flags = 0;
} names[40];
// The patterns array holds tile patterns, corresponding 1:1 with names.