mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 15:01:28 +12:00
rsx: Fix compiler warnings
This commit is contained in:
parent
de28c812e8
commit
5281a85b67
4 changed files with 32 additions and 31 deletions
|
@ -507,7 +507,7 @@ namespace rsx
|
|||
|
||||
if (fifo_span.size() < rcount)
|
||||
{
|
||||
rcount = fifo_span.size();
|
||||
rcount = ::size32(fifo_span);
|
||||
}
|
||||
|
||||
if (rsx->m_graphics_state & rsx::pipeline_state::transform_constants_dirty)
|
||||
|
@ -560,7 +560,7 @@ namespace rsx
|
|||
|
||||
if (fifo_span.size() < rcount)
|
||||
{
|
||||
rcount = fifo_span.size();
|
||||
rcount = ::size32(fifo_span);
|
||||
}
|
||||
|
||||
copy_data_swap_u32(&rsx::method_registers.transform_program[load_pos * 4 + index % 4], fifo_span.data(), rcount);
|
||||
|
@ -1030,7 +1030,7 @@ namespace rsx
|
|||
|
||||
if (fifo_span.size() < count)
|
||||
{
|
||||
count = fifo_span.size();
|
||||
count = ::size32(fifo_span);
|
||||
}
|
||||
|
||||
// Skip "handled methods"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue