(svn r2984) Use adequate types, this should aid portability a bit

This commit is contained in:
tron
2005-09-25 09:04:59 +00:00
parent d20bcf3eb5
commit bdbceba0cb
7 changed files with 14 additions and 11 deletions

View File

@@ -828,7 +828,8 @@ static void CompanyLeagueWndProc(Window *w, WindowEvent *e)
case WE_PAINT: {
Player *p;
Player *plist[MAX_PLAYERS];
size_t pl_num, i;
uint pl_num;
uint i;
DrawWindowWidgets(w);