diff options
author | peter1138 <peter1138@openttd.org> | 2009-01-17 21:01:15 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2009-01-17 21:01:15 +0000 |
commit | 3deb373c6090e4ac65877e1da5349a3881432e4b (patch) | |
tree | 369802d1802a74f7618ea58ee220e72bd9771147 | |
parent | 61156d6d61c084fb2f9b636817a46592bb9b2345 (diff) | |
download | openttd-3deb373c6090e4ac65877e1da5349a3881432e4b.tar.xz |
(svn r15131) -Fix: Indentifluxation combobulated
-rw-r--r-- | src/aircraft_cmd.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/aircraft_cmd.cpp b/src/aircraft_cmd.cpp index ac6934837..f901306f5 100644 --- a/src/aircraft_cmd.cpp +++ b/src/aircraft_cmd.cpp @@ -1310,9 +1310,9 @@ TileIndex Aircraft::GetOrderStationLocation(StationID station) void Aircraft::MarkDirty() { - this->cur_image = this->GetImage(this->direction); - if (this->subtype == AIR_HELICOPTER) this->Next()->Next()->cur_image = GetRotorImage(this); - MarkSingleVehicleDirty(this); + this->cur_image = this->GetImage(this->direction); + if (this->subtype == AIR_HELICOPTER) this->Next()->Next()->cur_image = GetRotorImage(this); + MarkSingleVehicleDirty(this); } static void CrashAirplane(Vehicle *v) |