Codechange: convert printf DEBUG statements to fmt Debug statements
This commit is contained in:
@@ -223,7 +223,7 @@ protected:
|
||||
{
|
||||
if (!this->stations.NeedRebuild()) return;
|
||||
|
||||
DEBUG(misc, 3, "Building station list for company %d", owner);
|
||||
Debug(misc, 3, "Building station list for company {}", owner);
|
||||
|
||||
this->stations.clear();
|
||||
|
||||
@@ -662,7 +662,7 @@ public:
|
||||
void OnGameTick() override
|
||||
{
|
||||
if (this->stations.NeedResort()) {
|
||||
DEBUG(misc, 3, "Periodic rebuild station list company %d", this->window_number);
|
||||
Debug(misc, 3, "Periodic rebuild station list company {}", this->window_number);
|
||||
this->SetDirty();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user