summaryrefslogtreecommitdiff
path: root/players.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-11-13 21:16:34 +0000
committertron <tron@openttd.org>2005-11-13 21:16:34 +0000
commit357aba747578ecd3b8cc1a29bc740634211ada37 (patch)
treed66fcca83a94bececa75c9b65acbde8161e9e4be /players.c
parenteeade6978653e60e587f132f44b8d370244cc7bd (diff)
downloadopenttd-357aba747578ecd3b8cc1a29bc740634211ada37.tar.xz
(svn r3176) Use proper types, not some variants of int
Diffstat (limited to 'players.c')
-rw-r--r--players.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/players.c b/players.c
index a9629a716..2168eb264 100644
--- a/players.c
+++ b/players.c
@@ -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);