summaryrefslogtreecommitdiff
path: root/src/statusbar_gui.cpp
diff options
context:
space:
mode:
authorPatric Stout <truebrain@openttd.org>2021-08-18 12:00:17 +0200
committerGitHub <noreply@github.com>2021-08-18 12:00:17 +0200
commit5da60cef46eee1be7fb024f80181455e29a45e61 (patch)
tree26d0a15f907e6d77428ff5a627afc78535c0cc05 /src/statusbar_gui.cpp
parentde28817d9f345fadccc12d3038b11e8ff936ff3d (diff)
downloadopenttd-5da60cef46eee1be7fb024f80181455e29a45e61.tar.xz
Fix: typo in the word "spectator" (tnx Heiki) (#9496)
Diffstat (limited to 'src/statusbar_gui.cpp')
-rw-r--r--src/statusbar_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statusbar_gui.cpp b/src/statusbar_gui.cpp
index bbae48d64..9031ccf30 100644
--- a/src/statusbar_gui.cpp
+++ b/src/statusbar_gui.cpp
@@ -148,7 +148,7 @@ struct StatusBarWindow : Window {
case WID_S_RIGHT: {
if (_local_company == COMPANY_SPECTATOR) {
- DrawString(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, text_top, STR_STATUSBAR_SPECATOR, TC_FROMSTRING, SA_HOR_CENTER);
+ DrawString(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, text_top, STR_STATUSBAR_SPECTATOR, TC_FROMSTRING, SA_HOR_CENTER);
} else {
/* Draw company money, if any */
const Company *c = Company::GetIfValid(_local_company);