summaryrefslogtreecommitdiff
path: root/src/town_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
commit51c7ba39a4875272b420918e91e36c9b40f2f1a2 (patch)
tree348fbfb9f47ee42508b8c42686b7eeb304b7f0ab /src/town_gui.cpp
parent99733b2b3e98728368ef1c5685c4ddbe6b59daf4 (diff)
downloadopenttd-51c7ba39a4875272b420918e91e36c9b40f2f1a2.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/town_gui.cpp')
-rw-r--r--src/town_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/town_gui.cpp b/src/town_gui.cpp
index 4c563db34..64767290e 100644
--- a/src/town_gui.cpp
+++ b/src/town_gui.cpp
@@ -396,7 +396,7 @@ void ShowTownViewWindow(TownID town)
if (w != NULL) {
w->flags4 |= WF_DISABLE_VP_SCROLL;
- AssignWindowViewport(w, 3, 17, 0xFE, 0x56, GetTown(town)->xy, ZOOM_LVL_TOWN);
+ InitializeWindowViewport(w, 3, 17, 254, 86, GetTown(town)->xy, ZOOM_LVL_TOWN);
}
}