Remove Config.GetFlattenedJson() (#748)

This commit is contained in:
Kenix3
2024-12-11 22:11:07 -05:00
committed by GitHub
parent d308b392d8
commit d87f9d9ea6
2 changed files with 0 additions and 5 deletions
-4
View File
@@ -201,10 +201,6 @@ nlohmann::json Config::GetNestedJson() {
return mNestedJson;
}
nlohmann::json Config::GetFlattenedJson() {
return mFlattenedJson;
}
AudioBackend Config::GetCurrentAudioBackend() {
std::string backendName = GetString("Window.AudioBackend");
if (backendName == "wasapi") {
-1
View File
@@ -62,7 +62,6 @@ class Config {
void Reload();
void Save();
nlohmann::json GetNestedJson();
nlohmann::json GetFlattenedJson();
AudioBackend GetCurrentAudioBackend();
void SetCurrentAudioBackend(AudioBackend backend);