cellDmux: fix state check

This commit is contained in:
capriots 2026-05-12 20:10:08 +02:00
parent 021f16f775
commit 448eca12ee
No known key found for this signature in database

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;
}