File diff r27147:5d938ed2c7b5 → r27148:4e041ae27b9d
src/highscore_gui.cpp
Show inline comments
 
@@ -24,7 +24,6 @@
 
#include "misc_cmd.h"
 
#include "timer/timer.h"
 
#include "timer/timer_game_calendar.h"
 
#include "date_func.h"
 

	
 
#include "widgets/highscore_widget.h"
 

	
 
@@ -260,7 +259,7 @@ static IntervalTimer<TimerGameCalendar> 
 
	if (_settings_game.game_creation.ending_year == 0) return;
 

	
 
	/* Show the end-game chart at the end of the ending year (hence the + 1). */
 
	if (_cur_year == _settings_game.game_creation.ending_year + 1) {
 
	if (TimerGameCalendar::year == _settings_game.game_creation.ending_year + 1) {
 
		ShowEndGameChart();
 
	}
 
});