summaryrefslogtreecommitdiff
path: root/src/ship_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/ship_cmd.cpp
parentb93a612dfdc7e771ac11148b09262cbd12b9576c (diff)
downloadopenttd-51155403a4ae3e9dc4252ff8d155e335092a1e44.tar.xz
(svn r12531) -Codechange: Rename some variables for consistency.
Diffstat (limited to 'src/ship_cmd.cpp')
-rw-r--r--src/ship_cmd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ship_cmd.cpp b/src/ship_cmd.cpp
index ae7bea8b4..a3e460a29 100644
--- a/src/ship_cmd.cpp
+++ b/src/ship_cmd.cpp
@@ -322,9 +322,9 @@ void Ship::UpdateDeltaXY(Direction direction)
uint32 x = _delta_xy_table[direction];
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->z_height = 6;
+ this->x_extent = GB(x, 16, 8);
+ this->y_extent = GB(x, 24, 8);
+ this->z_extent = 6;
}
void RecalcShipStuff(Vehicle *v)