:: commit 19f8cc0741d9c0d2da275dd2d868c0151bd99eb2

mintsuki <mintsuki@protonmail.com> — 2024-06-07 22:48

parents: d0124c5bed

lib/panic: Use ternary in 'return to' message

diff --git a/common/lib/panic.s2.c b/common/lib/panic.s2.c
index 77d32038..7c57315d 100644
--- a/common/lib/panic.s2.c
+++ b/common/lib/panic.s2.c
@@ -52,12 +52,7 @@ noreturn void panic(bool allow_menu, const char *fmt, ...) {
       efi_boot_services_exited == false &&
 #endif
       allow_menu == true) {
-        if (booting_from_editor == true) {
-            print("Press a key to return to editor.");
-        }
-        else {
-            print("Press a key to return to menu.");
-        }
+        print("Press a key to return to %s.", booting_from_editor ? "editor" : "menu");
 
         getchar();
 
tab: 248 wrap: offon