mirror of https://github.com/PCSX2/pcsx2.git
Vif: replace makeMergeMask macro with a function
This commit is contained in:
parent
b1d446895b
commit
35cf2638e8
|
@ -68,8 +68,9 @@ VifUnpackSSE_Dynarec::VifUnpackSSE_Dynarec(const nVifStruct& vif_, const nVifBlo
|
|||
vCL = 0;
|
||||
}
|
||||
|
||||
#define makeMergeMask(x) { \
|
||||
x = ((x&0x40)>>6) | ((x&0x10)>>3) | (x&4) | ((x&1)<<3); \
|
||||
__fi void makeMergeMask(u32& x)
|
||||
{
|
||||
x = ((x&0x40)>>6) | ((x&0x10)>>3) | (x&4) | ((x&1)<<3);
|
||||
}
|
||||
|
||||
__fi void VifUnpackSSE_Dynarec::SetMasks(int cS) const {
|
||||
|
|
Loading…
Reference in New Issue