From 59195a6f2021051d135afc03965cebcb3d1c82de Mon Sep 17 00:00:00 2001 From: frosch Date: Sat, 10 Oct 2009 18:48:13 +0000 Subject: (svn r17758) -Revert (r17208): Use assert_compile() if you cannot count. -Fix (r7326): Powernaut Helicopter got wrong 'load amount'. -Fix (r2639): Call the Evil by its name. --- src/engine.cpp | 2 ++ src/table/engines.h | 1 + 2 files changed, 3 insertions(+) diff --git a/src/engine.cpp b/src/engine.cpp index 94199a602..d58124824 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -56,6 +56,8 @@ const uint8 _engine_offsets[4] = { lengthof(_orig_rail_vehicle_info) + lengthof(_orig_road_vehicle_info) + lengthof(_orig_ship_vehicle_info), }; +assert_compile(lengthof(_orig_rail_vehicle_info) + lengthof(_orig_road_vehicle_info) + lengthof(_orig_ship_vehicle_info) + lengthof(_orig_aircraft_vehicle_info) == lengthof(_orig_engine_info)); + const uint EngineOverrideManager::NUM_DEFAULT_ENGINES = _engine_counts[VEH_TRAIN] + _engine_counts[VEH_ROAD] + _engine_counts[VEH_SHIP] + _engine_counts[VEH_AIRCRAFT]; Engine::Engine() : diff --git a/src/table/engines.h b/src/table/engines.h index 5cfd1cf32..321b9f41a 100644 --- a/src/table/engines.h +++ b/src/table/engines.h @@ -335,6 +335,7 @@ static const EngineInfo _orig_engine_info[] = { MA( 23832, 20, 20, 99, Y), // 252 Flashbang Wizzer MA( 13575, 20, 20, 40, T|A|S ), // 253 Tricario Helicopter MA( 28215, 20, 20, 30, T|A|S ), // 254 Guru X2 Helicopter + MA( 13575, 20, 20, 99, Y), // 255 Powernaut Helicopter }; #undef Y #undef S -- cgit v1.2.3-54-g00ecf