summaryrefslogtreecommitdiffstats
path: root/src/bd-font.c
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-04-15 18:27:11 +0200
committerBad Diode <bd@badd10de.dev>2021-04-15 18:27:11 +0200
commit07ed91a0b730e84ac351748fcefc4c846ff7d5ba (patch)
treed82c2c2b355c2e0de71fb6386ffdb53d1e9ff059 /src/bd-font.c
parent05f557f302ce566247c37619b130ebebae2a39c8 (diff)
downloadgba-experiments-07ed91a0b730e84ac351748fcefc4c846ff7d5ba.tar.gz
gba-experiments-07ed91a0b730e84ac351748fcefc4c846ff7d5ba.zip
Fix warnings
Diffstat (limited to 'src/bd-font.c')
-rw-r--r--src/bd-font.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bd-font.c b/src/bd-font.c
index 9795860..6173e97 100644
--- a/src/bd-font.c
+++ b/src/bd-font.c
@@ -1,4 +1,4 @@
1static u8 font[][8] = { 1static const u8 font[][8] = {
2 {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, 2 {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
3 {0x00, 0x00, 0x24, 0x00, 0x42, 0x3c, 0x00, 0x00}, 3 {0x00, 0x00, 0x24, 0x00, 0x42, 0x3c, 0x00, 0x00},
4 {0x00, 0x00, 0x24, 0x00, 0x3c, 0x42, 0x00, 0x00}, 4 {0x00, 0x00, 0x24, 0x00, 0x3c, 0x42, 0x00, 0x00},