1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-08 23:58:09 +00:00

WIP - cstyle fixes

This commit is contained in:
grdddj 2022-11-14 15:51:04 +01:00
parent e9cd9e8ef3
commit 6a3965d782
2 changed files with 4 additions and 4 deletions

View File

@ -3,8 +3,8 @@
#if TREZOR_FONT_BPP != 1 #if TREZOR_FONT_BPP != 1
#error Wrong TREZOR_FONT_BPP (expected 1) #error Wrong TREZOR_FONT_BPP (expected 1)
#endif #endif
#define Font_Unifont_Bold_16_HEIGHT 12 // <--- 12 from 16 #define Font_Unifont_Bold_16_HEIGHT 12 // <--- 12 from 16
#define Font_Unifont_Bold_16_MAX_HEIGHT 12 // <--- 12 from 15 #define Font_Unifont_Bold_16_MAX_HEIGHT 12 // <--- 12 from 15
#define Font_Unifont_Bold_16_BASELINE 2 #define Font_Unifont_Bold_16_BASELINE 2
extern const uint8_t* const Font_Unifont_Bold_16[126 + 1 - 32]; extern const uint8_t* const Font_Unifont_Bold_16[126 + 1 - 32];
extern const uint8_t Font_Unifont_Bold_16_glyph_nonprintable[]; extern const uint8_t Font_Unifont_Bold_16_glyph_nonprintable[];

View File

@ -3,8 +3,8 @@
#if TREZOR_FONT_BPP != 1 #if TREZOR_FONT_BPP != 1
#error Wrong TREZOR_FONT_BPP (expected 1) #error Wrong TREZOR_FONT_BPP (expected 1)
#endif #endif
#define Font_Unifont_Regular_16_HEIGHT 12 // <--- 12 from 16 #define Font_Unifont_Regular_16_HEIGHT 12 // <--- 12 from 16
#define Font_Unifont_Regular_16_MAX_HEIGHT 12 // <--- 12 from 15 #define Font_Unifont_Regular_16_MAX_HEIGHT 12 // <--- 12 from 15
#define Font_Unifont_Regular_16_BASELINE 2 #define Font_Unifont_Regular_16_BASELINE 2
extern const uint8_t* const Font_Unifont_Regular_16[126 + 1 - 32]; extern const uint8_t* const Font_Unifont_Regular_16[126 + 1 - 32];
extern const uint8_t Font_Unifont_Regular_16_glyph_nonprintable[]; extern const uint8_t Font_Unifont_Regular_16_glyph_nonprintable[];