mirror of https://github.com/PCSX2/pcsx2.git
Interpreter: Fix Wsign-compare warning.
This commit is contained in:
parent
d07b190322
commit
8d7227b1f9
|
@ -239,7 +239,7 @@ static __fi void _doBranch_shared(u32 tar)
|
||||||
{
|
{
|
||||||
if ((cpuRegs.pc - tar) < (4 * 10))
|
if ((cpuRegs.pc - tar) < (4 * 10))
|
||||||
{
|
{
|
||||||
for (int i = tar; i < cpuRegs.pc; i += 4)
|
for (u32 i = tar; i < cpuRegs.pc; i += 4)
|
||||||
{
|
{
|
||||||
if (PSM(i) != 0)
|
if (PSM(i) != 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue