cellDmux: fix state check

This commit is contained in:
capriots
2026-05-12 20:10:08 +02:00
committed by Elad
parent 021f16f775
commit 2387af0854
+1 -1
View File
@@ -997,7 +997,7 @@ error_code cellDmuxResetEs(ppu_thread& ppu, vm::ptr<DmuxEsContext> esHandle)
return ret;
}
if (dmux_status & DMUX_STOPPED)
if (!(dmux_status & DMUX_STOPPED))
{
return CELL_DMUX_ERROR_SEQ;
}