1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-12 17:38:13 +00:00

fixup! refactor(core): remove UTF-8 support from C

This commit is contained in:
obrusvit 2024-12-09 11:57:13 +01:00
parent 560dd51c71
commit d42cea3818
4 changed files with 1 additions and 6 deletions

View File

@ -20,9 +20,6 @@
#include <trezor_rtl.h> #include <trezor_rtl.h>
#include "fonts.h" #include "fonts.h"
#ifdef TRANSLATIONS
#include "librust_fonts.h"
#endif
// include selectively based on the SCons variables // include selectively based on the SCons variables
#ifdef TREZOR_FONT_NORMAL_ENABLE #ifdef TREZOR_FONT_NORMAL_ENABLE

View File

@ -21,7 +21,7 @@
#define _FONTS_H #define _FONTS_H
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <trezor_types.h>
#include "font_bitmap.h" #include "font_bitmap.h"
#ifdef USE_RGB_COLORS #ifdef USE_RGB_COLORS

View File

@ -1 +0,0 @@
const uint8_t *get_utf8_glyph(uint16_t char_code, int font);

View File

@ -18,7 +18,6 @@
*/ */
#include "librust.h" #include "librust.h"
#include "librust_fonts.h"
#include "py/runtime.h" #include "py/runtime.h"
#if MICROPY_PY_TREZORUI2 #if MICROPY_PY_TREZORUI2