1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-26 07:59:09 +00:00

Codechange: Move Ticks into their own class

This commit is contained in:
Tyler Trahan
2023-08-16 09:01:24 -04:00
parent 30172fc037
commit fca2b37726
34 changed files with 132 additions and 116 deletions

View File

@@ -22,6 +22,7 @@
#include "currency.h"
#include "timer/timer.h"
#include "timer/timer_window.h"
#include "timer/timer_game_tick.h"
#include "timer/timer_game_calendar.h"
#include "zoom_func.h"
@@ -1130,7 +1131,7 @@ struct PerformanceRatingDetailWindow : Window {
UpdateCompanyRatingAndValue(c, false);
}
this->timeout = DAY_TICKS * 5;
this->timeout = Ticks::DAY_TICKS * 5;
}
uint score_info_left;