aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xbmc/Application.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp
index 1577bf050e..a4e0d44df5 100644
--- a/xbmc/Application.cpp
+++ b/xbmc/Application.cpp
@@ -2522,7 +2522,7 @@ bool CApplication::OnAction(const CAction &action)
{ // unpaused - set the playspeed back to normal
SetPlaySpeed(1);
}
- g_audioManager.Enable(m_pPlayer->IsPaused() && !g_audioContext.IsPassthroughActive());
+ g_audioManager.Enable(m_pPlayer->IsPaused());
return true;
}
if (!m_pPlayer->IsPaused())
@@ -2582,7 +2582,7 @@ bool CApplication::OnAction(const CAction &action)
{
// unpause, and set the playspeed back to normal
m_pPlayer->Pause();
- g_audioManager.Enable(m_pPlayer->IsPaused() && !g_audioContext.IsPassthroughActive());
+ g_audioManager.Enable(m_pPlayer->IsPaused());
g_application.SetPlaySpeed(1);
return true;