Codechange: Use correct type for max timetable start years constant (#11197)

This commit is contained in:
Tyler Trahan 2023-08-13 15:03:45 -04:00 committed by GitHub
parent 0726835735
commit 61dfd74e44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -11,9 +11,10 @@
#define TIMETABLE_H
#include "date_type.h"
#include "timer/timer_game_calendar.h"
#include "vehicle_type.h"
static const uint8_t MAX_TIMETABLE_START_YEARS = 15; ///< The maximum start date offset, in years.
static const TimerGameCalendar::Year MAX_TIMETABLE_START_YEARS = 15; ///< The maximum start date offset, in years.
void ShowTimetableWindow(const Vehicle *v);
void UpdateVehicleTimetable(Vehicle *v, bool travelling);