mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-12 06:37:50 +00:00
settings: Move IsConfiguringGlobal to settings_common
This commit is contained in:
parent
4ca87e712d
commit
8d4c466cde
4 changed files with 13 additions and 12 deletions
|
@ -42,4 +42,14 @@ const std::string& BasicSetting::GetLabel() const {
|
|||
return label;
|
||||
}
|
||||
|
||||
static bool configuring_global = true;
|
||||
|
||||
bool IsConfiguringGlobal() {
|
||||
return configuring_global;
|
||||
}
|
||||
|
||||
void SetConfiguringGlobal(bool is_global) {
|
||||
configuring_global = is_global;
|
||||
}
|
||||
|
||||
} // namespace Settings
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue