mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
some better default settings:
logging: turn off write to file core: don't insert anything in memcard b slot video: efb scale to integral, AF to 1x audio: 100% volume, 48KHz sample rate git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6650 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -23,22 +23,22 @@ void AudioCommonConfig::Load(IniFile &file) {
|
||||
file.Get("Config", "EnableDTKMusic", &m_EnableDTKMusic, true);
|
||||
file.Get("Config", "EnableThrottle", &m_EnableThrottle, true);
|
||||
file.Get("Config", "EnableJIT", &m_EnableJIT, true);
|
||||
file.Get("Config", "Volume", &m_Volume, 75);
|
||||
file.Get("Config", "Volume", &m_Volume, 100);
|
||||
#ifdef _WIN32
|
||||
file.Get("Config", "Backend", &sBackend, BACKEND_DIRECTSOUND);
|
||||
file.Get("Config", "Frequency", &sFrequency, "32,000 Hz");
|
||||
file.Get("Config", "Frequency", &sFrequency, "48,000 Hz");
|
||||
#elif defined __APPLE__
|
||||
std::string temp;
|
||||
file.Get("Config", "Backend", &temp, BACKEND_COREAUDIO);
|
||||
strncpy(sBackend, temp.c_str(), 128);
|
||||
file.Get("Config", "Frequency", &temp, "32,000 Hz");
|
||||
file.Get("Config", "Frequency", &temp, "48,000 Hz");
|
||||
strncpy(sFrequency, temp.c_str(), 128);
|
||||
#elif defined __linux__
|
||||
file.Get("Config", "Backend", &sBackend, BACKEND_ALSA);
|
||||
file.Get("Config", "Frequency", &sFrequency, "32,000 Hz");
|
||||
file.Get("Config", "Frequency", &sFrequency, "48,000 Hz");
|
||||
#else
|
||||
file.Get("Config", "Backend", &sBackend, BACKEND_OPENAL);
|
||||
file.Get("Config", "Frequency", &sFrequency, "32,000 Hz");
|
||||
file.Get("Config", "Frequency", &sFrequency, "48,000 Hz");
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user