addons: remove commented out constants related to unused addon type

This commit is contained in:
Subhraman Sarkar 2024-10-11 18:37:15 +05:30
parent 8b86256e4a
commit 94b075d720
2 changed files with 1 additions and 3 deletions

View file

@ -31,8 +31,7 @@ namespace
const std::array<std::string, ADDON_TYPES_COUNT> addon_type_strings {{
"unknown", "core", "campaign", "scenario", "campaign_sp_mp", "campaign_mp",
"scenario_mp", "map_pack", "era", "faction", "mod_mp", /*"gui", */ "media",
"theme", "other"
"scenario_mp", "map_pack", "era", "faction", "mod_mp", "media", "theme", "other"
}};
struct addon_name_char_illegal

View file

@ -111,7 +111,6 @@ enum ADDON_TYPE {
ADDON_MP_FACTION, /**< Multiplayer faction. */
// NOTE: following two still require proper engine support
ADDON_MOD, /**< Modification of the game. */
//ADDON_GUI, // GUI add-ons/themes.
ADDON_MEDIA, /**< Miscellaneous content/media (unit packs, terrain packs, music packs, etc.). */
ADDON_OTHER, /**< an add-on that fits in no other category */
ADDON_THEME, /** GUI2 Themes */