summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/misc.c b/misc.c
index 578b9b426..b000421b4 100644
--- a/misc.c
+++ b/misc.c
@@ -700,8 +700,11 @@ void IncreaseDate()
NetworkServerYearlyLoop();
#endif /* ENABLE_NETWORK */
+ /* check if we reached 2090, that's the maximum year. */
+ if (_cur_year == 131) { // end of game on 31 dec 2050
+ ShowEndGameChart();
/* check if we reached 2090 (MAX_YEAR_END_REAL), that's the maximum year. */
- if (_cur_year == (MAX_YEAR_END + 1)) {
+ } else if (_cur_year == (MAX_YEAR_END + 1)) {
Vehicle *v;
_cur_year = MAX_YEAR_END;
_date = 62093;