Fix minimap industry blinking rate

This commit is contained in:
dP
2025-06-16 12:51:47 +05:00
parent 02d6792570
commit fb38a2ef46
4 changed files with 6 additions and 27 deletions

View File

@@ -772,7 +772,7 @@ protected:
}
/** Blink the industries (if selected) on a regular interval. */
IntervalTimer<TimerWindow> blink_interval = {std::chrono::milliseconds(450), [this](auto) {
IntervalTimer<TimerWindow> blink_interval = {TIMER_BLINK_INTERVAL, [this](auto) {
Blink();
}};