set.mitm: Add delay to allow fatal to work when thrown

This commit is contained in:
Michael Scire 2019-01-21 01:13:41 -08:00
parent 18ee6eb2e6
commit 2711702e29

View file

@ -38,6 +38,9 @@ static HosThread g_fatal_thread;
static void FatalThreadFunc(void *arg) { static void FatalThreadFunc(void *arg) {
Result rc = (Result)((uintptr_t)arg); Result rc = (Result)((uintptr_t)arg);
svcSleepThread(5000000000ULL);
fatalSimple(rc); fatalSimple(rc);
} }