mirror of https://github.com/PCSX2/pcsx2.git
Misc : Fixed undefined behaviour warning
Co-Authored-By: Ty <29295048+F0bes@users.noreply.github.com>
This commit is contained in:
parent
5633053655
commit
48549ff790
|
@ -67,8 +67,8 @@ extern void psxRecompileNextInstruction(bool delayslot, bool swapped_delayslot);
|
|||
{ \
|
||||
if ((reg) < 32) \
|
||||
{ \
|
||||
g_psxHasConstReg |= (1 << (reg)); \
|
||||
g_psxFlushedConstReg &= ~(1 << (reg)); \
|
||||
g_psxHasConstReg |= (1u << (reg)); \
|
||||
g_psxFlushedConstReg &= ~(1u << (reg)); \
|
||||
} \
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue