Skip to content

Commit

Permalink
Аудио рендерер по умолчанию теперь "MPC Audio Renderer".
Browse files Browse the repository at this point in the history
  • Loading branch information
v0lt committed Mar 8, 2024
1 parent 3f7440f commit ebde3c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/apps/mplayerc/AppSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ void CAppSettings::ResetSettings()
nSpeedStep = 0; // auto
bSpeedNotReset = false;

strAudioRendererDisplayName.Empty();
strAudioRendererDisplayName = L"MPC Audio Renderer";
strAudioRendererDisplayName2.Empty();
fDualAudioOutput = false;

Expand Down
6 changes: 3 additions & 3 deletions src/apps/mplayerc/PPageAudio.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* (C) 2003-2006 Gabest
* (C) 2006-2023 see Authors.txt
* (C) 2006-2024 see Authors.txt
*
* This file is part of MPC-BE.
*
Expand Down Expand Up @@ -29,7 +29,7 @@
IMPLEMENT_DYNAMIC(CPPageAudio, CPPageBase)
CPPageAudio::CPPageAudio()
: CPPageBase(CPPageAudio::IDD, CPPageAudio::IDD)
, m_iAudioRendererType(1)
, m_iAudioRendererType(0)
, m_iSecAudioRendererType(1)

, m_fAutoloadAudio(FALSE)
Expand Down Expand Up @@ -142,7 +142,7 @@ BOOL CPPageAudio::OnInitDialog()
m_iAudioRendererTypeCtrl.AddString(str);
m_iSecAudioRendererTypeCtrl.AddString(str);

m_iAudioRendererType = 1;
m_iAudioRendererType = 0;
m_iSecAudioRendererType = 1;
for (INT_PTR idx = 0; idx < m_AudioRendererDisplayNames.GetCount(); idx++) {
if (s.strAudioRendererDisplayName == m_AudioRendererDisplayNames[idx]) {
Expand Down

0 comments on commit ebde3c7

Please sign in to comment.