From d7f56f1550ad463c6584595675dbebf745c30a78 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Wed, 21 Mar 2007 13:19:01 +0000 Subject: (svn r9388) -Codechange: variable scope and type, and standardify all CargoID loops. --- src/aircraft_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/aircraft_cmd.cpp') diff --git a/src/aircraft_cmd.cpp b/src/aircraft_cmd.cpp index 624c0afe9..6bd9a4a1c 100644 --- a/src/aircraft_cmd.cpp +++ b/src/aircraft_cmd.cpp @@ -1408,7 +1408,7 @@ static void MaybeCrashAirplane(Vehicle *v) if (GB(Random(), 0, 16) > prob) return; /* Crash the airplane. Remove all goods stored at the station. */ - for (uint i = 0; i != NUM_CARGO; i++) { + for (CargoID i = 0; i < NUM_CARGO; i++) { st->goods[i].rating = 1; SB(st->goods[i].waiting_acceptance, 0, 12, 0); } -- cgit v1.2.3-54-g00ecf