Update to 14.1

This commit is contained in:
dP
2024-05-05 14:51:12 +05:00
parent 14504ff3b2
commit 46dc456049
112 changed files with 1219 additions and 958 deletions
+1 -1
View File
@@ -799,7 +799,7 @@ struct TimetableWindow : Window {
/**
* In real-time mode, the timetable GUI shows relative times and needs to be redrawn every second.
*/
IntervalTimer<TimerGameTick> redraw_interval = {Ticks::TICKS_PER_SECOND, [this](auto) {
IntervalTimer<TimerGameTick> redraw_interval = { { TimerGameTick::Priority::NONE, Ticks::TICKS_PER_SECOND }, [this](auto) {
if (_settings_client.gui.timetable_mode == TimetableMode::Seconds) {
this->SetDirty();
}