summaryrefslogtreecommitdiff
path: root/src/pluginlist.h
diff options
context:
space:
mode:
authorJeremy Rimpo <jeremy.rimpo@servermonkey.com>2023-10-03 23:15:42 -0500
committerGitHub <noreply@github.com>2023-10-03 23:15:42 -0500
commitf8a3d5b86e4a6884953df6737a762c0f2e28aec3 (patch)
treed65cb8bd982d95ef0163028903f1327c957c76b4 /src/pluginlist.h
parentb5ba8522d81ddd6231ae6063c3f3181605d96898 (diff)
parenta705938ffdc8aa2422ea936b0e2d1f629e6f9d11 (diff)
Merge pull request #1894 from ModOrganizer2/loot_0_22
WIP: Plugin sorting updates
Diffstat (limited to 'src/pluginlist.h')
-rw-r--r--src/pluginlist.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h
index 0c53fc25..db32d911 100644
--- a/src/pluginlist.h
+++ b/src/pluginlist.h
@@ -313,13 +313,15 @@ signals:
private:
struct ESPInfo
{
- ESPInfo(const QString& name, bool enabled, bool forceDisabled,
- const QString& originName, const QString& fullPath, bool hasIni,
- std::set<QString> archives, bool lightSupported, bool overrideSupported);
+ 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);
QString name;
QString fullPath;
bool enabled;
+ bool forceLoaded;
bool forceEnabled;
bool forceDisabled;
int priority;