summaryrefslogtreecommitdiff
path: root/src/smallmap_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-09-04 19:09:31 +0000
committerrubidium <rubidium@openttd.org>2008-09-04 19:09:31 +0000
commitdd927661cfd5dacbf8b4efa26c6616e61c617d2b (patch)
treeb172d049753578b1f8a9c770b8a60eb94fd63429 /src/smallmap_gui.cpp
parent819628bde441eafaf0b6f0e004c90a6ebad9330d (diff)
downloadopenttd-dd927661cfd5dacbf8b4efa26c6616e61c617d2b.tar.xz
(svn r14243) -Fix [FS#2269]: clicking on the smallmap didn't break the "follow vehicle in main viewport".
Diffstat (limited to 'src/smallmap_gui.cpp')
-rw-r--r--src/smallmap_gui.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/smallmap_gui.cpp b/src/smallmap_gui.cpp
index 326ca7391..6343a5d83 100644
--- a/src/smallmap_gui.cpp
+++ b/src/smallmap_gui.cpp
@@ -901,6 +901,7 @@ public:
Point pt = RemapCoords(this->scroll_x, this->scroll_y, 0);
Window *w = FindWindowById(WC_MAIN_WINDOW, 0);
+ w->viewport->follow_vehicle = INVALID_VEHICLE;
w->viewport->dest_scrollpos_x = pt.x + ((_cursor.pos.x - this->left + 2) << 4) - (w->viewport->virtual_width >> 1);
w->viewport->dest_scrollpos_y = pt.y + ((_cursor.pos.y - this->top - 16) << 4) - (w->viewport->virtual_height >> 1);