mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Remove the Enable Atrac3+ checkbox
This commit is contained in:
parent
dea4668ae8
commit
f15e21c5f8
3 changed files with 0 additions and 4 deletions
|
@ -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);
|
||||
|
|
|
@ -99,7 +99,6 @@ public:
|
|||
|
||||
// Sound
|
||||
bool bEnableSound;
|
||||
bool bEnableAtrac3plus;
|
||||
bool bLowLatencyAudio;
|
||||
int iSFXVolume;
|
||||
int iBGMVolume;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue