diff --git a/rpcs3/Emu/Cell/Modules/cellAudio.cpp b/rpcs3/Emu/Cell/Modules/cellAudio.cpp index fcb6e05851..555585e43b 100644 --- a/rpcs3/Emu/Cell/Modules/cellAudio.cpp +++ b/rpcs3/Emu/Cell/Modules/cellAudio.cpp @@ -1334,7 +1334,11 @@ static error_code AudioCreateNotifyEventQueue(vm::ptr id, vm::ptr key, // Create an event queue "bruteforcing" an available key const u64 key_value = 0x80004d494f323221ull + i; - if (CellError res{sys_event_queue_create(id, attr, key_value, 32) + 0u}) + // This originally reads from a global sdk value set by cellAudioInit + // So check initialization as well + const u32 queue_depth = g_fxo->get()->init && g_ps3_process_info.sdk_ver <= 0x35FFFF ? 2 : 8; + + if (CellError res{sys_event_queue_create(id, attr, key_value, queue_depth) + 0u}) { if (res != CELL_EEXIST) {