Codefix: follow coding style

This commit is contained in:
Rubidium
2024-03-22 21:30:44 +01:00
committed by rubidium42
parent 7457f8d0ff
commit e904122441
3 changed files with 10 additions and 10 deletions

View File

@@ -94,7 +94,7 @@ void FindStationsAroundSelection()
/* If the current tile is already a station, then it must be the nearest station. */
if (IsTileType(location.tile, MP_STATION) && GetTileOwner(location.tile) == _local_company) {
T* st = T::GetByTile(location.tile);
T *st = T::GetByTile(location.tile);
if (st != nullptr) {
SetViewportCatchmentSpecializedStation<T>(st, true);
return;