Skip to content

Commit

Permalink
rpcsx-gpu: IT_DMA_DATA: fix memory fill with constant
Browse files Browse the repository at this point in the history
  • Loading branch information
DHrpcs3 committed Oct 4, 2024
1 parent 759616e commit 9042c37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcsx-gpu/Pipe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -980,7 +980,7 @@ bool GraphicsPipe::dmaData(Queue &queue) {
rx::die("IT_DMA_DATA: unexpected srcSel %u", srcSel);
}

rx::dieIf(size > srcSize,
rx::dieIf(size > srcSize && saic == 0,
"IT_DMA_DATA: out of source size srcSel %u, dstSel %u, size %u",
srcSel, dstSel, size);

Expand Down

0 comments on commit 9042c37

Please sign in to comment.