Files
@ r27443:1150c64644d0
Branch filter:
Location: cpp/openttd-patchpack/source/src/saveload/airport_sl.cpp - annotation
r27443:1150c64644d0
1.2 KiB
text/x-c
Fix: Check max member count in squirrel classes (#10883)
Manual cherry-pick from https://github.com/albertodemichelis/squirrel/commit/23a0620658714b996d20da3d4dd1a0dcf9b0bd98
Manual cherry-pick from https://github.com/albertodemichelis/squirrel/commit/23a0620658714b996d20da3d4dd1a0dcf9b0bd98
r14852:7024934aebc4 r14852:7024934aebc4 r14852:7024934aebc4 r14852:7024934aebc4 r14852:7024934aebc4 r14852:7024934aebc4 r14852:7024934aebc4 r14852:7024934aebc4 r14852:7024934aebc4 r14852:7024934aebc4 r14852:7024934aebc4 r14852:7024934aebc4 r15765:a259baeea62f r14852:7024934aebc4 r21383:942c32fb8b0e r21383:942c32fb8b0e r25775:274657b41228 r25775:274657b41228 r25773:457e167f3c9e r14852:7024934aebc4 r25775:274657b41228 r25775:274657b41228 r25773:457e167f3c9e r15766:3470743b2be0 r25773:457e167f3c9e r25773:457e167f3c9e r25772:5ba83ce3a853 r25772:5ba83ce3a853 r25772:5ba83ce3a853 r14852:7024934aebc4 r25596:7bf7822e5659 r25596:7bf7822e5659 | /*
* This file is part of OpenTTD.
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file airport_sl.cpp Code handling saving and loading airport ids */
#include "../stdafx.h"
#include "saveload.h"
#include "newgrf_sl.h"
#include "../safeguards.h"
struct APIDChunkHandler : NewGRFMappingChunkHandler {
APIDChunkHandler() : NewGRFMappingChunkHandler('APID', _airport_mngr) {}
};
struct ATIDChunkHandler : NewGRFMappingChunkHandler {
ATIDChunkHandler() : NewGRFMappingChunkHandler('ATID', _airporttile_mngr) {}
};
static const ATIDChunkHandler ATID;
static const APIDChunkHandler APID;
static const ChunkHandlerRef airport_chunk_handlers[] = {
ATID,
APID,
};
extern const ChunkHandlerTable _airport_chunk_handlers(airport_chunk_handlers);
|