(svn r22574) -Fix (r22566): GetGRFID was using a wrong return type.

This commit is contained in:
terkhen 2011-06-13 06:28:43 +00:00
parent 729d786d5e
commit 7f5612a98f
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ uint16 OverrideManagerBase::AddEntityID(byte grf_local_id, uint32 grfid, byte su
* @param entity_id ID of the entity being queried.
* @return GRFID.
*/
uint16 OverrideManagerBase::GetGRFID(uint16 entity_id) const
uint32 OverrideManagerBase::GetGRFID(uint16 entity_id) const
{
return mapping_ID[entity_id].grfid;
}