newgrf.c
changeset 4964 fd058c9cd46a
parent 4961 5c6439ce39f1
child 4992 bd2716c79584
--- a/newgrf.c	Fri Oct 27 13:58:58 2006 +0000
+++ b/newgrf.c	Fri Oct 27 14:05:42 2006 +0000
@@ -90,14 +90,14 @@
 
 typedef void (*SpecialSpriteHandler)(byte *buf, int len);
 
-static const uint _vehcounts[4] = {
+static const int _vehcounts[4] = {
 	/* GSF_TRAIN */    NUM_TRAIN_ENGINES,
 	/* GSF_ROAD */     NUM_ROAD_ENGINES,
 	/* GSF_SHIP */     NUM_SHIP_ENGINES,
 	/* GSF_AIRCRAFT */ NUM_AIRCRAFT_ENGINES
 };
 
-static const uint _vehshifts[4] = {
+static const int _vehshifts[4] = {
 	/* GSF_TRAIN */    0,
 	/* GSF_ROAD */     ROAD_ENGINES_INDEX,
 	/* GSF_SHIP */     SHIP_ENGINES_INDEX,
@@ -2615,7 +2615,7 @@
 							uint start = 0;
 							uint size  = 0;
 							uint shift = _vehshifts[feature];
-							uint i;
+							int i;
 
 							if (op == 6) {
 								/* Return GRFID of set that reserved ID */