Codechange: use scoped enums for timer enumerations, rename one enum

This commit is contained in:
Rubidium
2026-01-17 10:54:17 +01:00
committed by rubidium42
parent 7092162a97
commit 03c24810b1
30 changed files with 95 additions and 93 deletions
+1 -1
View File
@@ -477,7 +477,7 @@ public:
CheckRedrawStationCoverage(this);
}
const IntervalTimer<TimerGameCalendar> yearly_interval = {{TimerGameCalendar::YEAR, TimerGameCalendar::Priority::NONE}, [this](auto) {
const IntervalTimer<TimerGameCalendar> yearly_interval = {{TimerGameCalendar::Trigger::Year, TimerGameCalendar::Priority::None}, [this](auto) {
this->InvalidateData();
}};
};