(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 de12d4a207
commit 0d6c71fc38
1 changed files with 1 additions and 1 deletions

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++) {