Remove unused saveload desc in cheats_sl.cpp

This commit is contained in:
Jonathan G Rennison
2024-02-19 04:25:44 +00:00
parent 6ab1f9a416
commit a874bb70b1

View File

@@ -161,22 +161,6 @@ static void Save_CHTX()
}, nullptr); }, nullptr);
} }
/**
* Internal structure used in SaveSettingsPatx() and SaveSettingsPlyx()
*/
struct SettingsExtSave {
uint32_t flags;
const char *name;
uint32_t setting_length;
};
static const SaveLoad _settings_ext_save_desc[] = {
SLE_VAR(SettingsExtSave, flags, SLE_UINT32),
SLE_STR(SettingsExtSave, name, SLE_STR, 0),
SLE_VAR(SettingsExtSave, setting_length, SLE_UINT32),
};
/** Chunk handlers related to cheats. */ /** Chunk handlers related to cheats. */
static const ChunkHandler cheat_chunk_handlers[] = { static const ChunkHandler cheat_chunk_handlers[] = {
{ 'CHTS', Save_CHTS, Load_CHTS, nullptr, nullptr, CH_RIFF }, { 'CHTS', Save_CHTS, Load_CHTS, nullptr, nullptr, CH_RIFF },