From 448eca12ee8f21a8f77e9bbc244f816f392c5154 Mon Sep 17 00:00:00 2001 From: capriots <29807355+capriots@users.noreply.github.com> Date: Tue, 12 May 2026 20:10:08 +0200 Subject: [PATCH] cellDmux: fix state check --- rpcs3/Emu/Cell/Modules/cellDmux.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/cellDmux.cpp b/rpcs3/Emu/Cell/Modules/cellDmux.cpp index 7c2fe6f1a9..20365033fb 100644 --- a/rpcs3/Emu/Cell/Modules/cellDmux.cpp +++ b/rpcs3/Emu/Cell/Modules/cellDmux.cpp @@ -997,7 +997,7 @@ error_code cellDmuxResetEs(ppu_thread& ppu, vm::ptr esHandle) return ret; } - if (dmux_status & DMUX_STOPPED) + if (!(dmux_status & DMUX_STOPPED)) { return CELL_DMUX_ERROR_SEQ; }