kern: fix building without debugging turned on

This commit is contained in:
Michael Scire
2020-02-20 10:14:27 -08:00
parent efae01c165
commit bb3f7c8ab9
3 changed files with 15 additions and 8 deletions

View File

@@ -322,7 +322,7 @@ namespace ams::kern::board::nintendo::nx {
void KSystemControl::StopSystem() {
if (g_call_smc_on_panic) {
/* Display a panic screen via secure monitor. */
/* TODO: Enable in release: smc::Panic(0xF00); */
smc::Panic(0xF00);
}
while (true) { /* ... */ }
}