mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-09 17:49:45 +00:00
rsx/cache: Warnings cleanup
This commit is contained in:
parent
f8617500b5
commit
33609717f8
1 changed files with 2 additions and 2 deletions
|
@ -870,8 +870,8 @@ namespace rsx
|
||||||
|
|
||||||
for (u8 index = 0; index < 16; ++index)
|
for (u8 index = 0; index < 16; ++index)
|
||||||
{
|
{
|
||||||
data_block.fp_alphakill_mask |= (u32)(fp.textures_alpha_kill[index] & 0x1) << index;
|
data_block.fp_alphakill_mask |= u32(fp.textures_alpha_kill[index] & 0x1) << index;
|
||||||
data_block.fp_zfunc_mask |= (u32)(fp.textures_zfunc[index] & 0xF) << (index << 2);
|
data_block.fp_zfunc_mask |= u64(fp.textures_zfunc[index] & 0xF) << (index << 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
return data_block;
|
return data_block;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue