(svn r3176) Use proper types, not some variants of int

This commit is contained in:
tron
2005-11-13 21:16:34 +00:00
parent eeade69786
commit 357aba7475
7 changed files with 13 additions and 11 deletions

View File

@@ -619,7 +619,7 @@ void DeletePlayerWindows(PlayerID pi)
byte GetPlayerRailtypes(PlayerID p)
{
byte rt = 0;
uint i;
EngineID i;
for (i = 0; i != TOTAL_NUM_ENGINES; i++) {
const Engine* e = GetEngine(i);