(svn r4792) - Codechange: change a uint to a uint16 to avoid a signed/unsigned warning from some compilers.

This commit is contained in:
peter1138
2006-05-09 11:39:23 +00:00
parent 88dfc46885
commit c0eaa2ef41

View File

@@ -686,7 +686,7 @@ static void StationBuildWndProc(Window *w, WindowEvent *e)
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++) {