summaryrefslogtreecommitdiff
path: root/src/engine.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-02-20 20:56:54 +0000
committerpeter1138 <peter1138@openttd.org>2008-02-20 20:56:54 +0000
commit0e997be11ea96de172a372a5285dbd9a1f5174b0 (patch)
tree3c40c82307fa0b48d130d6a239cca2eedcd874ba /src/engine.h
parente0b0ecc5a7781266e32ae6ee888d82a996635440 (diff)
downloadopenttd-0e997be11ea96de172a372a5285dbd9a1f5174b0.tar.xz
(svn r12205) -Codechange: rename RailVehicleInfo::running_cost_base to running_cost, inline with other vehicle types (It is the factor, not the base)
Diffstat (limited to 'src/engine.h')
-rw-r--r--src/engine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine.h b/src/engine.h
index 9b44fdb9a..26c7401f9 100644
--- a/src/engine.h
+++ b/src/engine.h
@@ -36,7 +36,7 @@ struct RailVehicleInfo {
uint16 max_speed;
uint16 power;
uint16 weight;
- byte running_cost_base;
+ byte running_cost;
byte running_cost_class;
EngineClass engclass; ///< Class of engine for this vehicle
byte capacity;