mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-03 12:00:59 +00:00
modtrezorui: use const for bitmap font
This commit is contained in:
parent
4d4a351ba6
commit
7dfc863fe7
@ -1,6 +1,6 @@
|
||||
#include "font_bitmap.h"
|
||||
|
||||
const uint8_t *Font_Bitmap = (const uint8_t *)
|
||||
const uint8_t * const Font_Bitmap = (const uint8_t * const)
|
||||
"\x00\x00\x00\x00\x00"
|
||||
"\x00\x00\x5f\x00\x00"
|
||||
"\x00\x07\x00\x07\x00"
|
||||
|
@ -1,3 +1,3 @@
|
||||
#include <stdint.h>
|
||||
|
||||
extern const uint8_t *Font_Bitmap;
|
||||
extern const uint8_t * const Font_Bitmap;
|
||||
|
Loading…
Reference in New Issue
Block a user