Fix some type comparison warnings.

This commit is contained in:
Unknown W. Brackets 2013-11-27 22:30:48 -08:00
parent a69ddf840c
commit dd2e996838
7 changed files with 29 additions and 27 deletions

View file

@ -186,7 +186,7 @@ void CDisasm::stepInto()
}
}
for (int i = 0; i < (newAddress-currentPc)/4; i++)
for (u32 i = 0; i < (newAddress-currentPc)/4; i++)
{
Core_DoSingleStep();
Sleep(1);