panic: Properly reset palette

This commit is contained in:
mintsuki 2021-05-10 23:06:39 +02:00
parent 26a875c7af
commit 3681263f7b

View File

@ -9,7 +9,7 @@ __attribute__((noreturn)) void panic(const char *fmt, ...) {
va_start(args, fmt);
print("\033[31mPANIC\033[37;1m\033[40m: ");
print("\033[31mPANIC\033[37;1m\033[0m: ");
vprint(fmt, args);
va_end(args);