From 49584082a08db84344a54ae7e0a7927915261edf Mon Sep 17 00:00:00 2001 From: tron Date: Sun, 9 Jan 2005 21:25:44 +0000 Subject: (svn r1451) Fix some of the signed/unsigned comparison warnings --- misc.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'misc.c') diff --git a/misc.c b/misc.c index f439bad8b..8e779bcb2 100644 --- a/misc.c +++ b/misc.c @@ -184,7 +184,7 @@ void ConvertGroundTilesIntoWaterTiles(); void InitializeGame() { // Initialize the autoreplace array. Needs to be cleared between each game - int i; + uint i; for (i = 0; i < lengthof(_autoreplace_array); i++) _autoreplace_array[i] = i; @@ -608,7 +608,9 @@ static const uint16 _autosave_months[] = { void IncreaseDate() { const int vehicles_per_day = (1 << (sizeof(_date_fract) * 8)) / 885; - int i,ctr,t; + uint i; + VehicleID ctr; + int t; YearMonthDay ymd; if (_game_mode == GM_MENU) { -- cgit v1.2.3-54-g00ecf