Changeset - r15766:3470743b2be0
[Not reviewed]
master
0 1 0
rubidium - 14 years ago 2010-08-11 19:09:26
rubidium@openttd.org
(svn r20450) -Fix: same the airport tile ID mapping as well
1 file changed with 11 insertions and 0 deletions:
0 comments (0 inline, 0 general)
src/saveload/airport_sl.cpp
Show inline comments
 
@@ -24,6 +24,17 @@ static void Load_APID()
 
	Load_NewGRFMapping(_airport_mngr);
 
}
 

	
 
static void Save_ATID()
 
{
 
	Save_NewGRFMapping(_airporttile_mngr);
 
}
 

	
 
static void Load_ATID()
 
{
 
	Load_NewGRFMapping(_airporttile_mngr);
 
}
 

	
 
extern const ChunkHandler _airport_chunk_handlers[] = {
 
	{ 'ATID', Save_ATID, Load_ATID, NULL, NULL, CH_ARRAY },
 
	{ 'APID', Save_APID, Load_APID, NULL, NULL, CH_ARRAY | CH_LAST },
 
};
0 comments (0 inline, 0 general)