diff options
author | Charles Pigott <charlespigott@googlemail.com> | 2021-02-13 21:50:51 +0000 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2021-02-13 22:15:16 +0000 |
commit | 2b08f21625da0c0425bc8f5843b802f84b72a0b6 (patch) | |
tree | c6ad0eaa8462d8f9e0fefbe1ac82ac4c01026d43 /src | |
parent | f1fc083f2b7f168931cd881cf040d7f3b084fb27 (diff) | |
download | openttd-2b08f21625da0c0425bc8f5843b802f84b72a0b6.tar.xz |
Fix #8625: Wrong ending year was displayed in highscore table
Diffstat (limited to 'src')
-rw-r--r-- | src/highscore_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/highscore_gui.cpp b/src/highscore_gui.cpp index a473424f8..b1c428a76 100644 --- a/src/highscore_gui.cpp +++ b/src/highscore_gui.cpp @@ -183,7 +183,7 @@ struct HighScoreWindow : EndGameHighScoreBaseWindow { this->SetupHighScoreEndWindow(); Point pt = this->GetTopLeft(ScaleGUITrad(640), ScaleGUITrad(480)); - SetDParam(0, ORIGINAL_END_YEAR); + SetDParam(0, _settings_game.game_creation.ending_year); DrawStringMultiLine(pt.x + ScaleGUITrad(70), pt.x + ScaleGUITrad(570), pt.y, pt.y + ScaleGUITrad(140), !_networking ? STR_HIGHSCORE_TOP_COMPANIES_WHO_REACHED : STR_HIGHSCORE_TOP_COMPANIES_NETWORK_GAME, TC_FROMSTRING, SA_CENTER); /* Draw Highscore peepz */ |