modtrezorui: use const for bitmap font

This commit is contained in:
Pavol Rusnak 2017-03-28 21:09:21 +02:00
parent 4d4a351ba6
commit 7dfc863fe7
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 2 additions and 2 deletions

View File

@ -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"

View File

@ -1,3 +1,3 @@
#include <stdint.h>
extern const uint8_t *Font_Bitmap;
extern const uint8_t * const Font_Bitmap;