diff options
author | smatz <smatz@openttd.org> | 2009-03-26 22:13:00 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-03-26 22:13:00 +0000 |
commit | 47036cb49ea25ef358ffb9c6dd55c8ef1be955ee (patch) | |
tree | 672e1f707f2bcb604d91e22242205edc75721b21 /src/statusbar_gui.cpp | |
parent | 84b632d60fca786206f50b76384c53b3833b8e71 (diff) | |
download | openttd-47036cb49ea25ef358ffb9c6dd55c8ef1be955ee.tar.xz |
(svn r15863) -Fix (r15791): company money and game date strings were swapped on the statusbar
Diffstat (limited to 'src/statusbar_gui.cpp')
-rw-r--r-- | src/statusbar_gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/statusbar_gui.cpp b/src/statusbar_gui.cpp index e8636f790..066003fcc 100644 --- a/src/statusbar_gui.cpp +++ b/src/statusbar_gui.cpp @@ -97,12 +97,12 @@ struct StatusBarWindow : Window { this->DrawWidgets(); SetDParam(0, _date); - DrawString(this->widget[SBW_RIGHT].left + 1, this->widget[SBW_RIGHT].right - 1, 1, (_pause_game || _settings_client.gui.status_long_date) ? STR_00AF : STR_00AE, TC_FROMSTRING, SA_CENTER); + DrawString(this->widget[SBW_LEFT].left + 1, this->widget[SBW_LEFT].right - 1, 1, (_pause_game || _settings_client.gui.status_long_date) ? STR_00AF : STR_00AE, TC_FROMSTRING, SA_CENTER); if (c != NULL) { /* Draw company money */ SetDParam(0, c->money); - DrawString(this->widget[SBW_LEFT].left + 1, this->widget[SBW_LEFT].right - 1, 1, STR_0004, TC_FROMSTRING, SA_CENTER); + DrawString(this->widget[SBW_RIGHT].left + 1, this->widget[SBW_RIGHT].right - 1, 1, STR_0004, TC_FROMSTRING, SA_CENTER); } /* Draw status bar */ |