From 70509275405d2a5c5e94743786f03b17ef2051f2 Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Tue, 19 Sep 2023 11:19:39 -0500 Subject: Default profile settings (#1869) * Fix archive parsing and BSA invalidation --- src/createinstancedialog.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/createinstancedialog.h') diff --git a/src/createinstancedialog.h b/src/createinstancedialog.h index fe3c5646..4495cc78 100644 --- a/src/createinstancedialog.h +++ b/src/createinstancedialog.h @@ -66,6 +66,15 @@ public: auto operator<=>(const Paths&) const = default; }; + struct ProfileSettings + { + bool localInis; + bool localSaves; + bool archiveInvalidation; + + auto operator<=>(const ProfileSettings&) const = default; + }; + // all the info filled in the various pages // struct CreationInfo @@ -78,6 +87,7 @@ public: QString dataPath; QString iniPath; Paths paths; + ProfileSettings profileSettings; }; CreateInstanceDialog(const PluginContainer& pc, Settings* s, -- cgit v1.3.1