Skip to content

Commit

Permalink
Merge pull request #13673 from shenweip/mpeg-fix
Browse files Browse the repository at this point in the history
Fix mistake.
  • Loading branch information
hrydgard authored Nov 18, 2020
2 parents 1e5e0e2 + 0b64d58 commit 5c4a227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/HLE/sceMpeg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1548,7 +1548,7 @@ static u32 sceMpegRingbufferPut(u32 ringbufferAddr, int numPackets, int availabl
hleEnqueueCall(ringbuffer->callback_addr, 3, args, action);
writeOffset = (writeOffset + packetsThisRound) % (s32)ringbuffer->packets;
// Old savestate don't use this feature, just for compatibility.
if (useRingbufferPutCallbackMulti)
if (!useRingbufferPutCallbackMulti)
break;
}
} else {
Expand Down

0 comments on commit 5c4a227

Please sign in to comment.