From 88a0e0fe2d81523a2e590d1c97978e61927ad286 Mon Sep 17 00:00:00 2001 From: Eladash Date: Sun, 14 Jun 2020 07:20:40 +0300 Subject: [PATCH] cellAudio: Minor fixup --- rpcs3/Emu/Cell/Modules/cellAudio.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rpcs3/Emu/Cell/Modules/cellAudio.cpp b/rpcs3/Emu/Cell/Modules/cellAudio.cpp index 925660cadd..2e989e25b0 100644 --- a/rpcs3/Emu/Cell/Modules/cellAudio.cpp +++ b/rpcs3/Emu/Cell/Modules/cellAudio.cpp @@ -460,13 +460,13 @@ void cell_audio_thread::advance(u64 timestamp, bool reset) for (const auto& key_inf : keys) { + if (key_inf.flags & CELL_AUDIO_EVENTFLAG_NOMIX) + { + continue; + } + if ((queues[queue_count] = key_inf.port.lock())) { - if (key_inf.flags & CELL_AUDIO_EVENTFLAG_NOMIX) - { - continue; - } - u32 periods = 1; if (key_inf.flags & CELL_AUDIO_EVENTFLAG_DECIMATE_2)