mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 06:15:04 +00:00
(svn r15274) -Fix (r8705): oldloader wasn't updated to use 64bit airport_flags
This commit is contained in:
parent
18ed717410
commit
562299d809
@ -163,6 +163,7 @@ bool LoadChunk(LoadgameState *ls, void *base, const OldChunks *chunks)
|
||||
case OC_VAR_I32:*(int32 *)ptr = res; break;
|
||||
case OC_VAR_U32:*(uint32*)ptr = res; break;
|
||||
case OC_VAR_I64:*(int64 *)ptr = res; break;
|
||||
case OC_VAR_U64:*(uint64*)ptr = res; break;
|
||||
default: NOT_REACHED();
|
||||
}
|
||||
|
||||
|
@ -47,6 +47,7 @@ enum OldChunkType {
|
||||
OC_VAR_I32 = 5 << 8,
|
||||
OC_VAR_U32 = 6 << 8,
|
||||
OC_VAR_I64 = 7 << 8,
|
||||
OC_VAR_U64 = 8 << 8,
|
||||
/* 8 bits allocated (256 max) */
|
||||
|
||||
OC_FILE_I8 = 1 << 16,
|
||||
|
@ -777,10 +777,10 @@ static const OldChunks station_chunk[] = {
|
||||
OCL_SVAR( OC_UINT8, Station, owner ),
|
||||
OCL_SVAR( OC_UINT8, Station, facilities ),
|
||||
OCL_SVAR( OC_TTD | OC_UINT8, Station, airport_type ),
|
||||
OCL_SVAR( OC_TTO | OC_FILE_U16 | OC_VAR_U32, Station, airport_flags ),
|
||||
OCL_SVAR( OC_TTO | OC_FILE_U16 | OC_VAR_U64, Station, airport_flags ),
|
||||
OCL_NULL( 3 ), ///< bus/truck status, blocked months, no longer in use
|
||||
OCL_CNULL( OC_TTD, 1 ), ///< unknown
|
||||
OCL_SVAR( OC_TTD | OC_FILE_U16 | OC_VAR_U32, Station, airport_flags ),
|
||||
OCL_SVAR( OC_TTD | OC_FILE_U16 | OC_VAR_U64, Station, airport_flags ),
|
||||
OCL_CNULL( OC_TTD, 2 ), ///< last_vehicle. now last_vehicle_type
|
||||
OCL_CNULL( OC_TTD, 4 ), ///< junk at end of chunk
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user