From d20d4f7bf92e4261ab94adac609c72e699c0c719 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Sun, 18 May 2025 19:37:18 +0000 Subject: [PATCH] feat(kernel): :art: show stack on panic screen by default This is good if the PS/2 keyboard doesn't work. It clearly needs a rework tho. --- Kernel/core/panic/ui.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/core/panic/ui.cpp b/Kernel/core/panic/ui.cpp index cdf58885..efba9b9c 100644 --- a/Kernel/core/panic/ui.cpp +++ b/Kernel/core/panic/ui.cpp @@ -571,6 +571,7 @@ nsa void DisplayCrashScreen(CPU::ExceptionFrame *Frame) DisplayTopOverlay(); DisplayMainScreen(Frame); + DisplayStackScreen(Frame); InitializeKeyboards(); DisplayBottomOverlay();