mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 14:02:45 +01:00
fix linux config values not saved
This commit is contained in:
parent
148ad0cf0b
commit
68fe1e3476
2 changed files with 32 additions and 0 deletions
|
@ -280,6 +280,16 @@ void Config::ReadDebuggingValues() {
|
|||
EndGroup();
|
||||
}
|
||||
|
||||
#ifdef __unix__
|
||||
void Config::ReadLinuxValues() {
|
||||
BeginGroup(Settings::TranslateCategory(Settings::Category::Linux));
|
||||
|
||||
ReadCategory(Settings::Category::Linux);
|
||||
|
||||
EndGroup();
|
||||
}
|
||||
#endif
|
||||
|
||||
void Config::ReadServiceValues() {
|
||||
BeginGroup(Settings::TranslateCategory(Settings::Category::Services));
|
||||
|
||||
|
@ -386,6 +396,9 @@ void Config::ReadValues() {
|
|||
ReadControlValues();
|
||||
ReadCoreValues();
|
||||
ReadCpuValues();
|
||||
#ifdef __unix__
|
||||
ReadLinuxValues();
|
||||
#endif
|
||||
ReadRendererValues();
|
||||
ReadAudioValues();
|
||||
ReadSystemValues();
|
||||
|
@ -478,6 +491,9 @@ void Config::SaveValues() {
|
|||
SaveControlValues();
|
||||
SaveCoreValues();
|
||||
SaveCpuValues();
|
||||
#ifdef __unix__
|
||||
SaveLinuxValues();
|
||||
#endif
|
||||
SaveRendererValues();
|
||||
SaveAudioValues();
|
||||
SaveSystemValues();
|
||||
|
@ -552,6 +568,16 @@ void Config::SaveDebuggingValues() {
|
|||
EndGroup();
|
||||
}
|
||||
|
||||
#ifdef __unix__
|
||||
void Config::SaveLinuxValues() {
|
||||
BeginGroup(Settings::TranslateCategory(Settings::Category::Linux));
|
||||
|
||||
WriteCategory(Settings::Category::Linux);
|
||||
|
||||
EndGroup();
|
||||
}
|
||||
#endif
|
||||
|
||||
void Config::SaveNetworkValues() {
|
||||
BeginGroup(Settings::TranslateCategory(Settings::Category::Services));
|
||||
|
||||
|
|
|
@ -77,6 +77,9 @@ protected:
|
|||
void ReadCoreValues();
|
||||
void ReadDataStorageValues();
|
||||
void ReadDebuggingValues();
|
||||
#ifdef __unix__
|
||||
void ReadLinuxValues();
|
||||
#endif
|
||||
void ReadServiceValues();
|
||||
void ReadDisabledAddOnValues();
|
||||
void ReadMiscellaneousValues();
|
||||
|
@ -108,6 +111,9 @@ protected:
|
|||
void SaveCoreValues();
|
||||
void SaveDataStorageValues();
|
||||
void SaveDebuggingValues();
|
||||
#ifdef __unix__
|
||||
void SaveLinuxValues();
|
||||
#endif
|
||||
void SaveNetworkValues();
|
||||
void SaveDisabledAddOnValues();
|
||||
void SaveMiscellaneousValues();
|
||||
|
|
Loading…
Reference in a new issue