From 0dbb31f04a4762a20b76cd724c6b7b525c9b6fef Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Fri, 31 Jan 2025 13:22:05 +0100 Subject: [PATCH] fix(core): fully initialize display driver at the start of bootloader [no changelog] --- core/embed/projects/bootloader/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/embed/projects/bootloader/main.c b/core/embed/projects/bootloader/main.c index 5c86529940..e29fe9bc40 100644 --- a/core/embed/projects/bootloader/main.c +++ b/core/embed/projects/bootloader/main.c @@ -98,7 +98,7 @@ static void drivers_init(secbool *touch_initialized) { #ifdef USE_HASH_PROCESSOR hash_processor_init(); #endif - display_init(DISPLAY_JUMP_BEHAVIOR); + display_init(DISPLAY_RESET_CONTENT); unit_properties_init(); #ifdef USE_TOUCH