mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-12-10 13:48:40 +00:00
added a fix for audio (seems that some games calls sceAudioOutInit twice) Thanks Roamic for tracing this!
This commit is contained in:
@@ -235,6 +235,9 @@ int PS4_SYSV_ABI sceAudioOutGetSystemState() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int PS4_SYSV_ABI sceAudioOutInit() {
|
int PS4_SYSV_ABI sceAudioOutInit() {
|
||||||
|
if (audio != nullptr) {
|
||||||
|
return ORBIS_AUDIO_OUT_ERROR_ALREADY_INIT;
|
||||||
|
}
|
||||||
audio = std::make_unique<Audio::SDLAudio>();
|
audio = std::make_unique<Audio::SDLAudio>();
|
||||||
LOG_INFO(Lib_AudioOut, "called");
|
LOG_INFO(Lib_AudioOut, "called");
|
||||||
return ORBIS_OK;
|
return ORBIS_OK;
|
||||||
|
|||||||
Reference in New Issue
Block a user