diff options
author | discip <[email protected]> | 2023-11-22 09:20:02 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-11-22 09:20:02 +0100 |
commit | 37420d3ee108fdd4fb5179660d3cce6c62ed6603 (patch) | |
tree | f5c0b3d35207930bb1d1eef6b2ffd36ae8838fd9 | |
parent | faf2c6733ed4d48429f05a97ee5fa37c1de15364 (diff) | |
download | IronOS-37420d3ee108fdd4fb5179660d3cce6c62ed6603.tar.gz IronOS-37420d3ee108fdd4fb5179660d3cce6c62ed6603.zip |
Update Font.h
-rw-r--r-- | source/Core/Drivers/Font.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Core/Drivers/Font.h b/source/Core/Drivers/Font.h index 27db5016..9672891c 100644 --- a/source/Core/Drivers/Font.h +++ b/source/Core/Drivers/Font.h @@ -175,13 +175,13 @@ const uint8_t buttonB[] = { // 0xFE, 0x01, 0x79, 0x25, 0x79, 0x01, 0xFE, 0x00, 0x20, 0x20, 0x20, 0x20, 0xDF, 0x07, 0x8F, 0xDF, 0xFF, 0x01, 0xFE, 0x86, 0xDA, 0x86, 0xFE, 0x01,
// 0x7F, 0x80, 0xA4, 0xBE, 0xA0, 0x80, 0x7F, 0x00, 0x04, 0x0E, 0x1F, 0x04, 0xFB, 0xFB, 0xFB, 0xFB, 0xFF, 0x80, 0x7F, 0x5B, 0x41, 0x5F, 0x7F, 0x80};
-const uint8_t infinityOnce[] = {
+const uint8_t RepeatOnce[] = {
// width = 16
// height = 16
0x00, 0xc0, 0x30, 0x08, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x14, 0x18, 0x1c, 0x00, 0xc0, 0x00,
0x00, 0x03, 0x08, 0x04, 0x7e, 0x00, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x10, 0x0c, 0x03, 0x00};
-const uint8_t infinityLoop[] = {
+const uint8_t RepeatInf[] = {
// width = 16
// height = 16
0x00, 0xc0, 0x30, 0x08, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x14, 0x18, 0x1c, 0x00, 0xc0, 0x00,
|