From 6d08d434a8a5a4471a620974a52550ada05ab663 Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Thu, 13 Jun 2024 10:51:09 -0500 Subject: Add medium plugin support (Starfield) (#2048) * Add medium plugin support (Starfield) - Coopt the overlay support for the new 'medium' / ESH plugin flag - Update various displays to include ESH info * Rework address display for SF weirdness * Fix core ESH display --- src/pluginlist.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/pluginlist.h') diff --git a/src/pluginlist.h b/src/pluginlist.h index 3f4542fc..89c05141 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -240,8 +240,8 @@ public: bool hasMasterExtension(const QString& name) const; bool hasLightExtension(const QString& name) const; bool isMasterFlagged(const QString& name) const; + bool isMediumFlagged(const QString& name) const; bool isLightFlagged(const QString& name) const; - bool isOverlayFlagged(const QString& name) const; bool hasNoRecords(const QString& name) const; boost::signals2::connection onRefreshed(const std::function& callback); @@ -317,7 +317,7 @@ private: ESPInfo(const QString& name, bool forceLoaded, bool forceEnabled, bool forceDisabled, const QString& originName, const QString& fullPath, bool hasIni, std::set archives, bool lightSupported, - bool overrideSupported); + bool mediumSupported); QString name; QString fullPath; @@ -333,8 +333,8 @@ private: bool hasMasterExtension; bool hasLightExtension; bool isMasterFlagged; + bool isMediumFlagged; bool isLightFlagged; - bool isOverlayFlagged; bool hasNoRecords; bool modSelected; QString author; -- cgit v1.3.1