diff options
author | popcornmix <popcornmix@gmail.com> | 2018-01-15 16:19:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-15 16:19:04 +0000 |
commit | 7acb05ff74d6dcb5157f4548433effc4218aa9b5 (patch) | |
tree | bee5c4ce8eaa3bb18c78764182d2c46a5011e95d | |
parent | 0e33e2fdf420353102503460ab7a2f2ec4cc2881 (diff) | |
parent | 8f9bf7b1dcf65f9e08b78e3b5b79092e6b99910c (diff) |
Merge pull request #13372 from popcornmix/playervolfix
Application: Set volume after opening file
-rw-r--r-- | xbmc/Application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp index c69be442e5..e2c0465fb0 100644 --- a/xbmc/Application.cpp +++ b/xbmc/Application.cpp @@ -3203,9 +3203,9 @@ bool CApplication::PlayFile(CFileItem item, const std::string& player, bool bRes CLog::LogF(LOGDEBUG,"Ignored %d playback thread messages", dMsgCount); } + m_appPlayer.OpenFile(item, options, player, *this); m_appPlayer.SetVolume(m_volumeLevel); m_appPlayer.SetMute(m_muted); - m_appPlayer.OpenFile(item, options, player, *this); #if !defined(TARGET_POSIX) g_audioManager.Enable(false); |