Changeset - r3039:91914a7e0ed2
[Not reviewed]
master
0 1 0
Darkvater - 18 years ago 2006-02-20 01:36:48
darkvater@openttd.org
(svn r3619) - Codechange: Simplify a NullStruct initialization in the vehicle array (merge the two together to avoid confusion)
1 file changed with 1 insertions and 2 deletions:
0 comments (0 inline, 0 general)
vehicle.c
Show inline comments
 
@@ -2131,8 +2131,7 @@ const SaveLoad _common_veh_desc[] = {
 
	SLE_REF(Vehicle,prev_shared,				REF_VEHICLE),
 

	
 
	// reserve extra space in savegame here. (currently 10 bytes)
 
	SLE_CONDARR(NullStruct,null,SLE_FILE_U8 | SLE_VAR_NULL, 2, 2, 255), /* 2 */
 
	SLE_CONDARR(NullStruct,null,SLE_FILE_U32 | SLE_VAR_NULL, 2, 2, 255), /* 8 */
 
	SLE_CONDARR(NullStruct,null,SLE_FILE_U8 | SLE_VAR_NULL, 10, 2, 255),
 

	
 
	SLE_END()
 
};
0 comments (0 inline, 0 general)