1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-22 11:44:17 +01:00

Codefix: missing space between close parenthesis and open curly brace

This commit is contained in:
Rubidium
2024-04-16 18:44:55 +02:00
committed by rubidium42
parent 48eb9b8bc9
commit b2218e75d4
6 changed files with 7 additions and 7 deletions

View File

@@ -23,7 +23,7 @@
* Other than that, make sure you only set one callback per priority.
*
* For example:
* IntervalTimer<TimerGameCalendar>({TimerGameCalendar::DAY, TimerGameCalendar::Priority::NONE}, [](uint count){});
* IntervalTimer<TimerGameCalendar>({TimerGameCalendar::DAY, TimerGameCalendar::Priority::NONE}, [](uint count) {});
*
* @note Callbacks are executed in the game-thread.
*/