AX: Don't exit when initializing audio backend fails

just continue running without audio
This commit is contained in:
goeiecool9999 2025-12-19 16:56:49 +01:00
parent 3746f018c3
commit 42da9712a9

View file

@ -409,7 +409,6 @@ namespace snd_core
catch (std::runtime_error& ex)
{
cemuLog_log(LogType::Force, "can't initialize tv audio: {}", ex.what());
exit(0);
}
}
@ -423,7 +422,6 @@ namespace snd_core
catch (std::runtime_error& ex)
{
cemuLog_log(LogType::Force, "can't initialize pad audio: {}", ex.what());
exit(0);
}
}
}