From d27a2bdcbf657fbb22f734825e49bee02fbc0091 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 30 Jul 2012 18:59:13 +0200 Subject: [PATCH] Better detection of panicing while panicing. --- sortix/panic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sortix/panic.cpp b/sortix/panic.cpp index 0dd4f961..6b1e76fe 100644 --- a/sortix/panic.cpp +++ b/sortix/panic.cpp @@ -49,6 +49,7 @@ namespace Sortix doublepanic = true; return; } + panicing = true; if ( longpanic ) { Log::Print("\e[m\e[31;40m\e[2J\e[H"); @@ -80,7 +81,6 @@ namespace Sortix Log::Print("\e[m\e[31m\e[0J"); Log::Print("RED MAXSI OF DEATH\n"); } - panicing = true; } void PanicCalltrace()