mirror of
https://github.com/geode-sdk/geode.git
synced 2025-02-17 00:30:26 -05:00
use std::optional<bool> for forward compat flag
This commit is contained in:
parent
b70b64dfc9
commit
516a1c67da
2 changed files with 763 additions and 765 deletions
File diff suppressed because it is too large
Load diff
|
@ -29,9 +29,8 @@ namespace geode {
|
|||
public:
|
||||
mutable std::mutex m_mutex;
|
||||
|
||||
bool m_forwardCompatModeSet = false;
|
||||
std::string m_gdVersion;
|
||||
bool m_forwardCompatMode = false;
|
||||
std::optional<bool> m_forwardCompatMode;
|
||||
|
||||
std::vector<ghc::filesystem::path> m_modSearchDirectories;
|
||||
std::vector<LoadProblem> m_problems;
|
||||
|
|
Loading…
Reference in a new issue