diff options
author | June McEnroe <june@causal.agency> | 2018-09-30 20:26:00 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-09-30 20:26:00 -0400 |
commit | a28b75ab4e4e1423c449c2b57a8a28df5c70d5c6 (patch) | |
tree | a1950a4640c635e6ceb4e03de3249fecd42d9274 /help.h | |
parent | Merge branch 'ansi' (diff) | |
download | torus-a28b75ab4e4e1423c449c2b57a8a28df5c70d5c6.tar.gz torus-a28b75ab4e4e1423c449c2b57a8a28df5c70d5c6.zip |
Use PascalCase for constants
Diffstat (limited to '')
-rw-r--r-- | help.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/help.h b/help.h index 8c092ed..1858af0 100644 --- a/help.h +++ b/help.h @@ -1,4 +1,4 @@ -static const uint8_t HELP_DATA[] = { +static const uint8_t HelpData[] = { 0xda, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, @@ -373,4 +373,4 @@ static const uint8_t HELP_DATA[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; -static const struct Tile *HELP = (const struct Tile *)HELP_DATA; +static const struct Tile *Help = (const struct Tile *)HelpData; |