diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -2741,7 +2741,7 @@ static void GetTileDesc_Station(TileInde if (spec->grffile != NULL) { const GRFConfig *gc = GetGRFConfig(spec->grffile->grfid); - td->grf = gc->name; + td->grf = gc->GetName(); } } } @@ -2752,7 +2752,7 @@ static void GetTileDesc_Station(TileInde if (ats->grf_prop.grffile != NULL) { const GRFConfig *gc = GetGRFConfig(ats->grf_prop.grffile->grfid); - td->grf = gc->name; + td->grf = gc->GetName(); } }