summaryrefslogtreecommitdiff
path: root/src/vehicle_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-04-19 13:17:19 +0000
committerrubidium <rubidium@openttd.org>2008-04-19 13:17:19 +0000
commit24b5c910398a06f4bacb54338399fc3b413cdee7 (patch)
tree348fbfb9f47ee42508b8c42686b7eeb304b7f0ab /src/vehicle_gui.cpp
parent1dcf912f0693ec90ecaa1b0302d92408d9f9c2fe (diff)
downloadopenttd-24b5c910398a06f4bacb54338399fc3b413cdee7.tar.xz
(svn r12789) -Codechange: rename AssignWindowViewport to InitializeWindowViewport because the viewport is now part of the window struct. Patch by Alberth.
Diffstat (limited to 'src/vehicle_gui.cpp')
-rw-r--r--src/vehicle_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp
index 092020989..55f824a97 100644
--- a/src/vehicle_gui.cpp
+++ b/src/vehicle_gui.cpp
@@ -1751,7 +1751,7 @@ void ShowVehicleViewWindow(const Vehicle *v)
if (w != NULL) {
w->caption_color = v->owner;
- AssignWindowViewport(w, VV_VIEWPORT_X, VV_VIEWPORT_Y, VV_INITIAL_VIEWPORT_WIDTH,
+ InitializeWindowViewport(w, VV_VIEWPORT_X, VV_VIEWPORT_Y, VV_INITIAL_VIEWPORT_WIDTH,
(v->type == VEH_TRAIN) ? VV_INITIAL_VIEWPORT_HEIGHT_TRAIN : VV_INITIAL_VIEWPORT_HEIGHT,
w->window_number | (1 << 31), _vehicle_view_zoom_levels[v->type]);
}