forked from mia/Aegisub
Defaulted audio player to portaudio on non-win32
Originally committed to SVN as r1117.
This commit is contained in:
parent
244b28ecf1
commit
e3d67151c0
1 changed files with 4 additions and 0 deletions
|
@ -173,7 +173,11 @@ void OptionsManager::LoadDefaults(bool onlyDefaults) {
|
|||
// Audio Advanced
|
||||
SetModificationType(MOD_AUDIO_RELOAD);
|
||||
SetInt(_T("Audio Cache"),1);
|
||||
#ifdef __WINDOWS__
|
||||
SetText(_T("Audio Player"),_T("dsound"));
|
||||
#else
|
||||
SetText(_T("Audio Player"),_T("portaudio"));
|
||||
#endif
|
||||
SetText(_T("Audio Provider"),_T("avisynth"));
|
||||
SetText(_T("Audio Downmixer"),_T("ConvertToMono"));
|
||||
SetText(_T("Audio HD Cache Location"),_T("default"));
|
||||
|
|
Loading…
Reference in a new issue