diff --git a/src/system/boot/platform/efi/console.cpp b/src/system/boot/platform/efi/console.cpp index 5747436632..f83428b534 100644 --- a/src/system/boot/platform/efi/console.cpp +++ b/src/system/boot/platform/efi/console.cpp @@ -249,7 +249,10 @@ console_control(bool graphics) status_t console_init(void) { - console_control(true); + // Solves video issues on Apple hardware. This is non-standard and + // deprecated and should not be used for anything else! + console_control(false); + update_screen_size(); console_hide_cursor(); console_clear_screen();