Skip to content

Commit

Permalink
BufferUtils: Fix regression in upload_untouched
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekotekina authored and kd-11 committed Sep 1, 2022
1 parent 2cd7238 commit 58e3232
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/RSX/Common/BufferUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ namespace
{
// In remaining loop: protect min values
c.vec_or(sizeof(T), c.v5, c.v0, c.v4);
c.vec_umin(sizeof(T), c.v2, c.v5, c.v4);
c.vec_umin(sizeof(T), c.v2, c.v2, c.v5);
}
else
{
Expand Down

0 comments on commit 58e3232

Please sign in to comment.