pcsx2: gcc warning sign compare

This commit is contained in:
Gregory Hainaut 2016-08-12 18:55:55 +02:00
parent 214253c579
commit f28ab4c280
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ int _allocX86reg(xRegisterLong x86reg, int type, int reg, int mode)
}
for (i=1; i<maxreg; i++) {
if ( i == esp.GetId() || i == ebp.GetId() ) continue;
if ( (int)i == esp.GetId() || (int)i == ebp.GetId() ) continue;
if (!x86regs[i].inuse || x86regs[i].type != type || x86regs[i].reg != reg) continue;
if( i >= maxreg ) {