summaryrefslogtreecommitdiff
path: root/graph_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-09-25 09:04:59 +0000
committertron <tron@openttd.org>2005-09-25 09:04:59 +0000
commitc2c865e4b9705a009b71d9cd69ce6821bc1bca72 (patch)
treed32081413d37e02ae74f2636f2ff0fa5e08da4dc /graph_gui.c
parent03ad234d47b72a833f88ff227acc0b698f7a2c0f (diff)
downloadopenttd-c2c865e4b9705a009b71d9cd69ce6821bc1bca72.tar.xz
(svn r2984) Use adequate types, this should aid portability a bit
Diffstat (limited to 'graph_gui.c')
-rw-r--r--graph_gui.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/graph_gui.c b/graph_gui.c
index 64e4bfdd7..76d008259 100644
--- a/graph_gui.c
+++ b/graph_gui.c
@@ -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);