summaryrefslogtreecommitdiff
path: root/src/aircraft_cmd.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2008-04-01 14:03:20 +0000
committerfrosch <frosch@openttd.org>2008-04-01 14:03:20 +0000
commit51155403a4ae3e9dc4252ff8d155e335092a1e44 (patch)
tree9a16bca519fc373be161aa0268902383ac926238 /src/aircraft_cmd.cpp
parentb93a612dfdc7e771ac11148b09262cbd12b9576c (diff)
downloadopenttd-51155403a4ae3e9dc4252ff8d155e335092a1e44.tar.xz
(svn r12531) -Codechange: Rename some variables for consistency.
Diffstat (limited to 'src/aircraft_cmd.cpp')
-rw-r--r--src/aircraft_cmd.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/aircraft_cmd.cpp b/src/aircraft_cmd.cpp
index 25be72919..f4c60c9d1 100644
--- a/src/aircraft_cmd.cpp
+++ b/src/aircraft_cmd.cpp
@@ -54,17 +54,17 @@ void Aircraft::UpdateDeltaXY(Direction direction)
case FLYING: x = MKIT(24, 24, -1, -1); break;
default: x = MKIT( 2, 2, -1, -1); break;
}
- this->z_height = 5;
+ this->z_extent = 5;
break;
- case AIR_SHADOW: this->z_height = 1; x = MKIT(2, 2, 0, 0); break;
- case AIR_ROTOR: this->z_height = 1; x = MKIT(2, 2, -1, -1); break;
+ case AIR_SHADOW: this->z_extent = 1; x = MKIT(2, 2, 0, 0); break;
+ case AIR_ROTOR: this->z_extent = 1; x = MKIT(2, 2, -1, -1); break;
}
#undef MKIT
this->x_offs = GB(x, 0, 8);
this->y_offs = GB(x, 8, 8);
- this->sprite_width = GB(x, 16, 8);
- this->sprite_height = GB(x, 24, 8);
+ this->x_extent = GB(x, 16, 8);
+ this->y_extent = GB(x, 24, 8);
}