diff --git a/bootloader/Makefile.bootloader b/bootloader/Makefile.bootloader index 622be61ec2..df18d1342d 100644 --- a/bootloader/Makefile.bootloader +++ b/bootloader/Makefile.bootloader @@ -137,7 +137,7 @@ INC += -I../extmod/modtrezorui SRC_MOD += $(addprefix extmod/modtrezorui/,\ display.c \ inflate.c \ - font_robotomono_regular.c \ + font_robotomono_regular_20.c \ ) endif diff --git a/bootloader/ui.c b/bootloader/ui.c index 643d4cd034..2097152de3 100644 --- a/bootloader/ui.c +++ b/bootloader/ui.c @@ -29,7 +29,7 @@ void screen_upload_progress(int permil) char *plabel = label; // TODO: convert permil -> plabel display_text_center(120, 192 + 32, "Uploading firmware", -1, FONT_NORMAL, ui_WHITE, ui_BLACK); - display_loader(permil, ui_BLUE, ui_BLACK, 0, 0, 0); + display_loader(permil, 0, ui_BLUE, ui_BLACK, 0, 0, 0); display_text_center(120, 192 / 2 + 14 / 2, plabel, -1, FONT_BOLD, ui_WHITE, ui_BLACK); display_refresh(); }