mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-15 22:21:25 +00:00
rsx/cache: Warnings cleanup
This commit is contained in:
parent
f8617500b5
commit
33609717f8
@ -870,8 +870,8 @@ namespace rsx
|
||||
|
||||
for (u8 index = 0; index < 16; ++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_alphakill_mask |= u32(fp.textures_alpha_kill[index] & 0x1) << index;
|
||||
data_block.fp_zfunc_mask |= u64(fp.textures_zfunc[index] & 0xF) << (index << 2);
|
||||
}
|
||||
|
||||
return data_block;
|
||||
|
Loading…
x
Reference in New Issue
Block a user