diff options
author | peter1138 <peter1138@openttd.org> | 2008-02-20 20:56:54 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2008-02-20 20:56:54 +0000 |
commit | 79b6b9cb66ac260ad2d4f601d96e877f78764a1b (patch) | |
tree | 3c40c82307fa0b48d130d6a239cca2eedcd874ba /src/engine.h | |
parent | db9d5a909fb94d9a2640ed75e644e9d874b3874f (diff) | |
download | openttd-79b6b9cb66ac260ad2d4f601d96e877f78764a1b.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.h | 2 |
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; |