[*] Harden consoletty from exceptions

This commit is contained in:
Reece Wilson 2023-12-22 00:34:30 +00:00
parent 66eca9ff8f
commit 2e06094e46

View File

@ -2414,7 +2414,14 @@ namespace Aurora::Console::ConsoleTTY
AuThreading::Sleep(1000 / 20);
}
#endif
gTTYConsole.Pump();
try
{
gTTYConsole.Pump();
}
catch (...)
{
SysPushErrorCatch();
}
}
}