(svn r22559) -Codechange: Remove constness from Station in ResolverObject.

This commit is contained in:
terkhen
2011-06-12 20:34:37 +00:00
parent faa77c9bc4
commit 431fba8852
3 changed files with 3 additions and 3 deletions

View File

@@ -365,7 +365,7 @@ struct ResolverObject {
TileContext context; ///< Are we resolving sprites for the upper halftile, or on a bridge?
} routes;
struct {
const struct Station *st; ///< Station of the airport for which the callback is run, or NULL for build gui.
struct Station *st; ///< Station of the airport for which the callback is run, or NULL for build gui.
byte airport_id; ///< Type of airport for which the callback is run
byte layout; ///< Layout of the airport to build.
TileIndex tile; ///< Tile for the callback, only valid for airporttile callbacks.