Merge branch 'shadps4-emu:main' into main

This commit is contained in:
Lizardy 2024-08-11 11:57:42 -04:00 committed by GitHub
commit bfd9611f80
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -235,6 +235,9 @@ int PS4_SYSV_ABI sceAudioOutGetSystemState() {
}
int PS4_SYSV_ABI sceAudioOutInit() {
if (audio != nullptr) {
return ORBIS_AUDIO_OUT_ERROR_ALREADY_INIT;
}
audio = std::make_unique<Audio::SDLAudio>();
LOG_INFO(Lib_AudioOut, "called");
return ORBIS_OK;