Changeset - r17779:e5565b7f041d
[Not reviewed]
master
0 1 0
terkhen - 13 years ago 2011-06-13 06:28:43
terkhen@openttd.org
(svn r22574) -Fix (r22566): GetGRFID was using a wrong return type.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/newgrf_commons.cpp
Show inline comments
 
@@ -146,7 +146,7 @@ uint16 OverrideManagerBase::AddEntityID(
 
 * @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;
 
}
0 comments (0 inline, 0 general)