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

This commit is contained in:
mintsuki 2024-06-08 00:48:50 +02:00
parent d0124c5bed
commit 19f8cc0741
1 changed files with 1 additions and 6 deletions

View File

@ -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();