From e8720fb8135c331ac789fe5cf98d2ed116b87449 Mon Sep 17 00:00:00 2001 From: obrusvit Date: Mon, 22 Apr 2024 14:51:14 +0200 Subject: [PATCH] WIP - attempt to hotfix build on apple DO NOT MERGE --- core/embed/lib/terminal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/embed/lib/terminal.c b/core/embed/lib/terminal.c index 9a471aebc..58cbde326 100644 --- a/core/embed/lib/terminal.c +++ b/core/embed/lib/terminal.c @@ -53,7 +53,7 @@ static uint64_t term_glyph_bits(char ch) { uint8_t bytes[8]; } result = {0}; - if (ch > ' ' && ch < 128) { + /* if (ch > ' ' && ch < 128) { */ const uint8_t *b = &Font_Bitmap[(ch - ' ') * 5]; for (int y = 0; y < 7; y++) { @@ -62,7 +62,7 @@ static uint64_t term_glyph_bits(char ch) { ((b[2] & mask) ? 32 : 0) + ((b[3] & mask) ? 16 : 0) + ((b[4] & mask) ? 8 : 0); } - } + /* } */ return result.u64; }