From d0b74d7751216e80505f4becad4b8960a0984343 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Tue, 27 Feb 2018 20:00:48 -0800 Subject: [PATCH] Panic Bright Red on failed master key detection. --- exosphere/src/masterkey.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/exosphere/src/masterkey.c b/exosphere/src/masterkey.c index 0b787c2bf..1e28b5659 100644 --- a/exosphere/src/masterkey.c +++ b/exosphere/src/masterkey.c @@ -57,10 +57,9 @@ void mkey_detect_revision(void) { } /* We must have determined the master key, or we're not running on a Switch. */ - /* TODO: When panic is implemented, make this a really distinctive color. */ - /* Maybe bright red? */ if (!g_determined_mkey_revision) { - generic_panic(); + /* Panic in bright red. */ + panic(0x00F00060); } }