Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'OpenAL-sane-defaults'
* OpenAL-sane-defaults:
  Removed a redundant tooltip text.
  Changed the default audio latency to 2.  Made soft_oal.dll the default on Windows builds as the old OpenAL32.dll is outdated and contains bugs.
  • Loading branch information
skidau committed Aug 23, 2013
2 parents a5613f5 + c774fb4 commit 1f3a0ff
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 4 deletions.
Binary file modified Externals/OpenAL/Win32/OpenAL32.dll
Binary file not shown.
Binary file removed Externals/OpenAL/Win32/soft_oal.dll
Binary file not shown.
Binary file removed Externals/OpenAL/Win32/wrap_oal.dll
Binary file not shown.
Binary file modified Externals/OpenAL/Win64/OpenAL32.dll
Binary file not shown.
Binary file removed Externals/OpenAL/Win64/soft_oal.dll
Binary file not shown.
Binary file removed Externals/OpenAL/Win64/wrap_oal.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/Core/Core/Src/ConfigManager.cpp
Expand Up @@ -396,7 +396,7 @@ void SConfig::LoadSettings()
ini.Get("Core", "EnableCheats", &m_LocalCoreStartupParameter.bEnableCheats, false);
ini.Get("Core", "SelectedLanguage", &m_LocalCoreStartupParameter.SelectedLanguage, 0);
ini.Get("Core", "DPL2Decoder", &m_LocalCoreStartupParameter.bDPL2Decoder, false);
ini.Get("Core", "Latency", &m_LocalCoreStartupParameter.iLatency, 14);
ini.Get("Core", "Latency", &m_LocalCoreStartupParameter.iLatency, 2);
ini.Get("Core", "MemcardA", &m_strMemoryCardA);
ini.Get("Core", "MemcardB", &m_strMemoryCardB);
ini.Get("Core", "SlotA", (int*)&m_EXIDevice[0], EXIDEVICE_MEMORYCARD);
Expand Down
4 changes: 1 addition & 3 deletions Source/Core/DolphinWX/Src/ConfigMain.cpp
Expand Up @@ -513,10 +513,8 @@ void CConfigMain::InitializeGUITooltips()

#if defined(__APPLE__)
DPL2Decoder->SetToolTip(_("Enables Dolby Pro Logic II emulation using 5.1 surround. Not available on OSX."));
#elif defined(__linux__)
#else
DPL2Decoder->SetToolTip(_("Enables Dolby Pro Logic II emulation using 5.1 surround. OpenAL backend only."));
#elif defined(_WIN32)
DPL2Decoder->SetToolTip(_("Enables Dolby Pro Logic II emulation using 5.1 surround. OpenAL backend only. May need to rename soft_oal.dll to OpenAL32.dll to make it work."));
#endif

Latency->SetToolTip(_("Sets the latency (in ms). Higher values may reduce audio crackling. OpenAL backend only."));
Expand Down

0 comments on commit 1f3a0ff

Please sign in to comment.