rsx: ZCULL typo fix

This commit is contained in:
Eladash 2020-02-11 23:46:05 +02:00 committed by kd-11
parent ddeb39d8de
commit 07f300a14e
2 changed files with 4 additions and 1 deletions

View File

@ -3248,6 +3248,9 @@ namespace rsx
return result_none;
const auto memory_end = memory_address + memory_range;
AUDIT(memory_end >= memory_address);
u32 sync_address = 0;
occlusion_query_info* query = nullptr;

View File

@ -1000,7 +1000,7 @@ namespace rsx
else
{
const u32 data_length = in_pitch * (in_h - 1) + src_line_length;
rsx->read_barrier(src_address, dst_address, true);
rsx->read_barrier(src_address, data_length, true);
}
u8* pixels_src = vm::_ptr<u8>(src_address + in_offset);