summaryrefslogtreecommitdiff
path: root/player_gui.c
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2006-08-16 11:39:55 +0000
committerrubidium <rubidium@openttd.org>2006-08-16 11:39:55 +0000
commit3cab5f30c06035034bcf5b513c2eee57b8ec11e9 (patch)
tree90102c4cf1f03e52dfe00d3cd1315b6cd9e6b399 /player_gui.c
parent50e96f8ff92bad28741ca3d360a4e7366072748d (diff)
downloadopenttd-3cab5f30c06035034bcf5b513c2eee57b8ec11e9.tar.xz
(svn r5926) -Codechange: make _cur_year contain the full year, instead of the offset since 1920
-Codechange: store all year related variables that are _not_ stored in a savegame/transported over the network in the same format as _cur_year
Diffstat (limited to 'player_gui.c')
-rw-r--r--player_gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/player_gui.c b/player_gui.c
index 10aacb333..d750191a9 100644
--- a/player_gui.c
+++ b/player_gui.c
@@ -46,8 +46,8 @@ static void DrawPlayerEconomyStats(const Player *p, byte mode)
x = 215;
tbl = p->yearly_expenses + 2;
do {
- if (year >= p->inaugurated_year) {
- SetDParam(0, BASE_YEAR + year);
+ if (year >= BASE_YEAR + p->inaugurated_year) {
+ SetDParam(0, year);
DrawStringCenterUnderline(x-17, 15, STR_7010, 0);
sum = 0;
for (i = 0; i != 13; i++) {