(svn r22561) -Codechange: Remove constness from Object in ResolverObject.

This commit is contained in:
terkhen
2011-06-12 20:36:33 +00:00
parent 76cd19f846
commit f1cde00372
3 changed files with 5 additions and 5 deletions

View File

@@ -371,7 +371,7 @@ struct ResolverObject {
TileIndex tile; ///< Tile for the callback, only valid for airporttile callbacks.
} airport;
struct {
const struct Object *o; ///< The object the callback is ran for.
struct Object *o; ///< The object the callback is ran for.
TileIndex tile; ///< The tile related to the object.
uint8 view; ///< The view of the object.
} object;