summaryrefslogtreecommitdiff
path: root/src/news_gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/news_gui.cpp')
-rw-r--r--src/news_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/news_gui.cpp b/src/news_gui.cpp
index 7de3a9370..46c18eeac 100644
--- a/src/news_gui.cpp
+++ b/src/news_gui.cpp
@@ -267,8 +267,8 @@ struct NewsWindow : Window {
case 0:
if (this->ni->flags & NF_VEHICLE) {
- Vehicle *v = GetVehicle(this->ni->data_a);
- ScrollMainWindowTo(v->x_pos, v->y_pos);
+ const Vehicle *v = GetVehicle(this->ni->data_a);
+ ScrollMainWindowTo(v->x_pos, v->y_pos, v->z_pos);
} else if (this->ni->flags & NF_TILE) {
if (_ctrl_pressed) {
ShowExtraViewPortWindow(this->ni->data_a);