diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2024-06-13 10:51:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-13 17:51:09 +0200 |
| commit | 6d08d434a8a5a4471a620974a52550ada05ab663 (patch) | |
| tree | 85b436568338199724a8b920a2323b94c67ef11a /src/pluginlist.h | |
| parent | 3d8bfdd1d4bf4539f3c3b991cf226b47dd582a91 (diff) | |
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
Diffstat (limited to 'src/pluginlist.h')
| -rw-r--r-- | src/pluginlist.h | 6 |
1 files changed, 3 insertions, 3 deletions
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<void()>& 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<QString> 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; |
