mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-23 22:49:09 +00:00
(svn r2643) Get rid of some unnecessary casts
This commit is contained in:
@@ -1171,8 +1171,7 @@ static void SignListWndProc(Window *w, WindowEvent *e)
|
||||
SignStruct *ss;
|
||||
|
||||
/* Start drawing the signs */
|
||||
i = 0;
|
||||
for (i = w->vscroll.pos; i < (uint)w->vscroll.cap + w->vscroll.pos && i < w->vscroll.count; i++) {
|
||||
for (i = w->vscroll.pos; i < w->vscroll.cap + w->vscroll.pos && i < w->vscroll.count; i++) {
|
||||
ss = GetSign(_sign_sort[i]);
|
||||
|
||||
if (ss->owner != OWNER_NONE)
|
||||
|
Reference in New Issue
Block a user