diff --git a/players.c b/players.c --- a/players.c +++ b/players.c @@ -180,10 +180,9 @@ void DrawPlayerFace(uint32 face, int col void InvalidatePlayerWindows(Player *p) { - uint pid = p->index; - if ( (byte)pid == _local_player) - InvalidateWindow(WC_STATUS_BAR, 0); + PlayerID pid = p->index; + if (pid == _local_player) InvalidateWindow(WC_STATUS_BAR, 0); InvalidateWindow(WC_FINANCES, pid); }