(svn r4792) - Codechange: change a uint to a uint16 to avoid a signed/unsigned warning from some compilers.
authorpeter1138
Tue, 09 May 2006 11:39:23 +0000
changeset 3796 4176bf40364e
parent 3795 52398950b042
child 3797 86749951a1bf
(svn r4792) - Codechange: change a uint to a uint16 to avoid a signed/unsigned warning from some compilers.
rail_gui.c
--- a/rail_gui.c	Tue May 09 10:35:13 2006 +0000
+++ b/rail_gui.c	Tue May 09 11:39:23 2006 +0000
@@ -686,7 +686,7 @@
 		DrawStationCoverageAreaText(2, 166 + y_offset, (uint)-1, rad);
 
 		if (newstations) {
-			uint i;
+			uint16 i;
 			uint y = 35;
 
 			for (i = w->vscroll.pos; i < _railstation.station_count && i < w->vscroll.pos + w->vscroll.cap; i++) {