Gracefully abort headless mode with unsupported video renderers

Also fix no_return bug
This commit is contained in:
Megamouse 2020-07-30 13:23:55 +02:00
parent dd497625a5
commit 3bba9708d9
4 changed files with 72 additions and 35 deletions

View file

@ -62,7 +62,7 @@ LOG_CHANNEL(sys_log, "SYS");
if (s_headless)
{
fprintf(stderr, "RPCS3: %s\n", text.c_str());
return;
std::abort();
}
const bool local = s_qt_init.try_lock();