mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-22 12:35:21 +00:00
rsx: Fix build after variable rename
This commit is contained in:
parent
6fd76054b4
commit
793a21a825
1 changed files with 2 additions and 2 deletions
|
@ -352,7 +352,7 @@ namespace rsx
|
|||
const size2u src_size = { dimensions.width / section_bpp, dimensions.height };
|
||||
|
||||
const u32 dst_slice_begin = slice * attr.slice_h; // Output slice low watermark
|
||||
const u32 dst_slice_end = slice_begin + attr.height; // Output slice high watermark
|
||||
const u32 dst_slice_end = dst_slice_begin + attr.height; // Output slice high watermark
|
||||
|
||||
const auto dst_y = dst_offset.y;
|
||||
const auto dst_h = dst_size.height;
|
||||
|
@ -400,7 +400,7 @@ namespace rsx
|
|||
static_cast<u16>(src_offset.x), // src.x
|
||||
static_cast<u16>(src_offset.y), // src.y
|
||||
static_cast<u16>(dst_offset.x), // dst.x
|
||||
static_cast<u16>(dst_y - slice_begin), // dst.y
|
||||
static_cast<u16>(dst_y - dst_slice_begin), // dst.y
|
||||
0,
|
||||
src_w,
|
||||
height,
|
||||
|
|
Loading…
Add table
Reference in a new issue