(svn r22562) -Codechange: Remove constness from TownGetVariable.

This commit is contained in:
terkhen
2011-06-12 20:37:26 +00:00
parent 58e70e26f2
commit 713acf1ad3
5 changed files with 5 additions and 5 deletions

View File

@@ -17,6 +17,6 @@
/* Currently there is no direct town resolver; we only need to get town
* variable results from inside stations, house tiles and industry tiles. */
uint32 TownGetVariable(byte variable, byte parameter, bool *available, const Town *t);
uint32 TownGetVariable(byte variable, byte parameter, bool *available, Town *t);
#endif /* NEWGRF_TOWN_H */