diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2023-09-19 11:19:39 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-19 18:19:39 +0200 |
| commit | 70509275405d2a5c5e94743786f03b17ef2051f2 (patch) | |
| tree | e98fb95afcd9e8ce499ff02351e3ad963a9c76f8 /src/settings.h | |
| parent | 59b5b1cfca1614df681055d98d602692f482f0e2 (diff) | |
Default profile settings (#1869)
* Fix archive parsing and BSA invalidation
Diffstat (limited to 'src/settings.h')
| -rw-r--r-- | src/settings.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/settings.h b/src/settings.h index 6a11d662..34a8669a 100644 --- a/src/settings.h +++ b/src/settings.h @@ -810,6 +810,21 @@ public: bool usePrereleases() const; void setUsePrereleases(bool b); + // whether profiles should default to local INIs + // + bool profileLocalInis() const; + void setProfileLocalInis(bool b); + + // whether profiles should default to local saves + // + bool profileLocalSaves() const; + void setProfileLocalSaves(bool b); + + // whether profiles should default to automatic archive invalidation + // + bool profileArchiveInvalidation() const; + void setProfileArchiveInvalidation(bool b); + // whether to use spascreen or not // bool useSplash() const; |
