summaryrefslogtreecommitdiff
path: root/src/station_gui.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2017-08-20 07:11:08 +0000
committeralberth <alberth@openttd.org>2017-08-20 07:11:08 +0000
commit2eae80bbfe2d7e70b0ccf2897196b33fb66960a3 (patch)
tree90627f524af2b01120bf14183fd6ee9bf7322841 /src/station_gui.cpp
parentb4b98e51655012ea42dbc8ab9e455fbec0d04b39 (diff)
downloadopenttd-2eae80bbfe2d7e70b0ccf2897196b33fb66960a3.tar.xz
(svn r27894) -Fix [FS#6608]: Typo fix in STATIOV_* string names (Wolf01)
Diffstat (limited to 'src/station_gui.cpp')
-rw-r--r--src/station_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/station_gui.cpp b/src/station_gui.cpp
index 7399fe006..aa2017018 100644
--- a/src/station_gui.cpp
+++ b/src/station_gui.cpp
@@ -1820,7 +1820,7 @@ struct StationViewWindow : public Window {
if (st->town->exclusive_counter > 0) {
SetDParam(0, st->town->exclusivity);
- y = DrawStringMultiLine(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, y, r.bottom, st->town->exclusivity == st->owner ? STR_STATIOV_VIEW_EXCLUSIVE_RIGHTS_SELF : STR_STATIOV_VIEW_EXCLUSIVE_RIGHTS_COMPANY);
+ y = DrawStringMultiLine(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, y, r.bottom, st->town->exclusivity == st->owner ? STR_STATION_VIEW_EXCLUSIVE_RIGHTS_SELF : STR_STATION_VIEW_EXCLUSIVE_RIGHTS_COMPANY);
y += WD_PAR_VSEP_WIDE;
}