No flags argument for MasteringGetState

This commit is contained in:
igor725 2024-06-03 10:09:06 +03:00
parent 6cf304e7cd
commit b7d669810e
No known key found for this signature in database
GPG Key ID: 46F13BBE46F8569D

View File

@ -540,7 +540,7 @@ EXPORT SYSV_ABI int32_t sceAudioOutMasteringSetParam(const SceAudioOutMasteringP
return Ok;
}
EXPORT SYSV_ABI int32_t sceAudioOutMasteringGetState(const SceAudioOutMasteringParamsHeader* param, uint32_t flags) {
EXPORT SYSV_ABI int32_t sceAudioOutMasteringGetState(const SceAudioOutMasteringParamsHeader* param) {
if (!audioInited) return Err::AudioOut::NOT_INIT;
return Ok;
}