Remove the Enable Atrac3+ checkbox

This commit is contained in:
Henrik Rydgard 2013-10-20 01:07:18 +02:00
parent dea4668ae8
commit f15e21c5f8
3 changed files with 0 additions and 4 deletions

View File

@ -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);

View File

@ -99,7 +99,6 @@ public:
// Sound
bool bEnableSound;
bool bEnableAtrac3plus;
bool bLowLatencyAudio;
int iSFXVolume;
int iBGMVolume;

View File

@ -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