Fix a sign comparison warning.

This isn't really negative anyway.
This commit is contained in:
Unknown W. Brackets 2014-12-07 21:08:03 -08:00
parent 9dd6bb56bb
commit 487e175cf9

View File

@ -60,7 +60,7 @@ struct FPURegMIPS {
// Where is this MIPS register?
RegMIPSLoc loc;
// Data (only one of these is used, depending on loc. Could make a union).
int reg;
u32 reg;
int lane;
bool spillLock; // if true, this register cannot be spilled.