summaryrefslogtreecommitdiff
path: root/src/economy.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-04-05 23:46:01 +0000
committerrubidium <rubidium@openttd.org>2008-04-05 23:46:01 +0000
commit84e3fa75e1977375aafbd56219ac34a26f9f6d73 (patch)
tree1331cafe5b467c7ca22f1040e5e65f6724e81619 /src/economy.cpp
parent3b0e3d8d3033265f6225d86df7be3189782868f6 (diff)
downloadopenttd-84e3fa75e1977375aafbd56219ac34a26f9f6d73.tar.xz
(svn r12585) -Fix (r12584): assumption that assertions were enabled during compilation/testing was flawed.
Diffstat (limited to 'src/economy.cpp')
-rw-r--r--src/economy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/economy.cpp b/src/economy.cpp
index 79283e664..329fdcbc3 100644
--- a/src/economy.cpp
+++ b/src/economy.cpp
@@ -1552,7 +1552,7 @@ void VehiclePayment(Vehicle *front_v)
*/
static void LoadUnloadVehicle(Vehicle *v, int *cargo_left)
{
- assert(v->current_order.type == OT_LOADING);
+ assert(v->current_order.IsType(OT_LOADING));
/* We have not waited enough time till the next round of loading/unloading */
if (--v->load_unload_time_rem != 0) {