- Backend update from Raze.

This commit is contained in:
Christoph Oelckers 2023-02-11 12:05:45 +01:00
commit f6bfc48d9f
16 changed files with 59 additions and 43 deletions

View file

@ -924,10 +924,16 @@ void M_Init (void)
}
catch (CVMAbortException &err)
{
menuDelegate = nullptr;
err.MaybePrintMessage();
Printf(PRINT_NONOTIFY | PRINT_BOLD, "%s", err.stacktrace.GetChars());
I_FatalError("Failed to initialize menus");
}
catch (...)
{
menuDelegate = nullptr;
throw;
}
M_CreateMenus();
}