From b7d669810ea4e0e92737cc20ef3d2ede78312910 Mon Sep 17 00:00:00 2001 From: igor725 Date: Mon, 3 Jun 2024 10:09:06 +0300 Subject: [PATCH] No flags argument for MasteringGetState --- modules/libSceAudioOut/entry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/libSceAudioOut/entry.cpp b/modules/libSceAudioOut/entry.cpp index 465ba70..dbd3fb7 100644 --- a/modules/libSceAudioOut/entry.cpp +++ b/modules/libSceAudioOut/entry.cpp @@ -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; }