diff options
Diffstat (limited to 'kernel/include/font.h')
| -rw-r--r-- | kernel/include/font.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/include/font.h b/kernel/include/font.h index f405a90..debaba9 100644 --- a/kernel/include/font.h +++ b/kernel/include/font.h @@ -19,7 +19,7 @@ typedef struct { /* font i used: /usr/share/kbd/consolefonts/lat9-16.psf.gz */ /* xxd -i font.psf */ -unsigned char font[] = { +const unsigned char font[] = { 0x72, 0xb5, 0x4a, 0x86, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0xc3, @@ -365,6 +365,6 @@ unsigned char font[] = { 0x66, 0x66, 0x7c, 0x60, 0x60, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7e, 0x06, 0x0c, 0xf8, 0x00 }; -unsigned int font_len = 4128; +const uint32_t font_len = 4128; #endif |
