diff options
author | terkhen <terkhen@openttd.org> | 2011-06-12 20:34:37 +0000 |
---|---|---|
committer | terkhen <terkhen@openttd.org> | 2011-06-12 20:34:37 +0000 |
commit | e8df5563dbf171aa5953a31d71cf30d42bbf4162 (patch) | |
tree | c82e0c81f592a8acd9bcfc570bb6e9903d9d168e /src/newgrf_spritegroup.h | |
parent | c98a8308cc1d0e820a96b618bdd2045580f1e173 (diff) | |
download | openttd-e8df5563dbf171aa5953a31d71cf30d42bbf4162.tar.xz |
(svn r22559) -Codechange: Remove constness from Station in ResolverObject.
Diffstat (limited to 'src/newgrf_spritegroup.h')
-rw-r--r-- | src/newgrf_spritegroup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_spritegroup.h b/src/newgrf_spritegroup.h index f95dd3748..f65a7f5c4 100644 --- a/src/newgrf_spritegroup.h +++ b/src/newgrf_spritegroup.h @@ -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. |