summaryrefslogtreecommitdiff
path: root/src/saveload/compat/cheat_sl_compat.h
blob: f3c7560976b4ae1e3bc41cf5835d67cfcd0f588b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * 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 cheat_sl_compat.h Loading for cheat chunks before table headers were added. */

#ifndef SAVELOAD_COMPAT_CHEAT_H
#define SAVELOAD_COMPAT_CHEAT_H

#include "../saveload.h"

/** Original field order for _cheats_desc. */
const SaveLoadCompat _cheats_sl_compat[] = {
	SLC_VAR("magic_bulldozer.been_used"),
	SLC_VAR("magic_bulldozer.value"),
	SLC_VAR("switch_company.been_used"),
	SLC_VAR("switch_company.value"),
	SLC_VAR("money.been_used"),
	SLC_VAR("money.value"),
	SLC_VAR("crossing_tunnels.been_used"),
	SLC_VAR("crossing_tunnels.value"),
	SLC_NULL(1, SL_MIN_VERSION, SLV_TABLE_CHUNKS),
	SLC_NULL(1, SL_MIN_VERSION, SLV_TABLE_CHUNKS), // Need to be two NULL fields. See Load_CHTS().
	SLC_VAR("no_jetcrash.been_used"),
	SLC_VAR("no_jetcrash.value"),
	SLC_NULL(1, SL_MIN_VERSION, SLV_TABLE_CHUNKS),
	SLC_NULL(1, SL_MIN_VERSION, SLV_TABLE_CHUNKS), // Need to be two NULL fields. See Load_CHTS().
	SLC_VAR("change_date.been_used"),
	SLC_VAR("change_date.value"),
	SLC_VAR("setup_prod.been_used"),
	SLC_VAR("setup_prod.value"),
	SLC_NULL(1, SL_MIN_VERSION, SLV_TABLE_CHUNKS),
	SLC_NULL(1, SL_MIN_VERSION, SLV_TABLE_CHUNKS), // Need to be two NULL fields. See Load_CHTS().
	SLC_VAR("edit_max_hl.been_used"),
	SLC_VAR("edit_max_hl.value"),
};

#endif /* SAVELOAD_COMPAT_CHEAT_H */