diff options
author | rubidium <rubidium@openttd.org> | 2007-07-04 22:24:57 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-07-04 22:24:57 +0000 |
commit | 9bc6a1cc8e463d37bad7e9140276079fc59a02ca (patch) | |
tree | b6ad58a31485da78bb7022b8aa9a30e5f66da6ab | |
parent | 997871063fb08e5bc87c09ed967b50562597b87d (diff) | |
download | openttd-9bc6a1cc8e463d37bad7e9140276079fc59a02ca.tar.xz |
(svn r10441) -Fix (r10440): something went wrong "porting" fixes from one place to another; like compiling the wrong checkout.
-rw-r--r-- | src/economy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/economy.cpp b/src/economy.cpp index cf47eab31..06e37742c 100644 --- a/src/economy.cpp +++ b/src/economy.cpp @@ -1239,7 +1239,7 @@ static void DeliverGoodsToIndustry(TileIndex xy, CargoID cargo_type, int num_pie if (HASBIT(callback, CBM_IND_PRODUCTION_CARGO_ARRIVAL) || HASBIT(callback, CBM_IND_PRODUCTION_256_TICKS)) { best->incoming_cargo_waiting[accepted_cargo_index] = min(num_pieces + best->incoming_cargo_waiting[accepted_cargo_index], 0xFFFF); - if (HASBIT(callback, CBM_IND_PRODUCTION_CARGO_ARRIVAL)) ///< @todo Perform some magic + if (HASBIT(callback, CBM_IND_PRODUCTION_CARGO_ARRIVAL)) {} ///< @todo Perform some magic } else { best->produced_cargo_waiting[0] = min(best->produced_cargo_waiting[0] + (num_pieces * indspec->input_cargo_multiplier[accepted_cargo_index][0] / 256), 0xFFFF); best->produced_cargo_waiting[1] = min(best->produced_cargo_waiting[1] + (num_pieces * indspec->input_cargo_multiplier[accepted_cargo_index][1] / 256), 0xFFFF); |