diff --git a/Core/Config.cpp b/Core/Config.cpp index 5af102df7..164be39d3 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -185,7 +185,6 @@ void Config::Load(const char *iniFileName, const char *controllerIniFilename) IniFile::Section *sound = iniFile.GetOrCreateSection("Sound"); sound->Get("Enable", &bEnableSound, true); - sound->Get("EnableAtrac3plus", &bEnableAtrac3plus, true); sound->Get("VolumeBGM", &iBGMVolume, 7); sound->Get("VolumeSFX", &iSFXVolume, 7); sound->Get("LowLatency", &bLowLatencyAudio, false); @@ -375,7 +374,6 @@ void Config::Save() { IniFile::Section *sound = iniFile.GetOrCreateSection("Sound"); sound->Set("Enable", bEnableSound); - sound->Set("EnableAtrac3plus", bEnableAtrac3plus); sound->Set("VolumeBGM", iBGMVolume); sound->Set("VolumeSFX", iSFXVolume); sound->Set("LowLatency", bLowLatencyAudio); diff --git a/Core/Config.h b/Core/Config.h index 5c85a55aa..840fa954d 100644 --- a/Core/Config.h +++ b/Core/Config.h @@ -99,7 +99,6 @@ public: // Sound bool bEnableSound; - bool bEnableAtrac3plus; bool bLowLatencyAudio; int iSFXVolume; int iBGMVolume; diff --git a/UI/GameSettingsScreen.cpp b/UI/GameSettingsScreen.cpp index 07913a740..367326541 100644 --- a/UI/GameSettingsScreen.cpp +++ b/UI/GameSettingsScreen.cpp @@ -195,7 +195,6 @@ void GameSettingsScreen::CreateViews() { audioSettings->Add(new PopupSliderChoice(&g_Config.iBGMVolume, 0, 8, a->T("BGM volume"), screenManager())); audioSettings->Add(new CheckBox(&g_Config.bEnableSound, a->T("Enable Sound"))); - audioSettings->Add(new CheckBox(&g_Config.bEnableAtrac3plus, a->T("Enable Atrac3+"))); audioSettings->Add(new CheckBox(&g_Config.bLowLatencyAudio, a->T("Low latency audio"))); // Control