[rbp/omxplayer] Fix build error from #2909
authorpopcornmix <popcornmix@gmail.com>
Thu, 27 Jun 2013 14:54:34 +0000 (15:54 +0100)
committerpopcornmix <popcornmix@gmail.com>
Thu, 27 Jun 2013 14:54:34 +0000 (15:54 +0100)
(sorry should have spotted this)

xbmc/cores/omxplayer/OMXPlayer.cpp

index 6aa8f6c..2f38add 100644 (file)
@@ -1332,7 +1332,7 @@ void COMXPlayer::Process()
 
     if(m_change_volume && m_CurrentAudio.started)
     {
-      if(m_player_audio.SetCurrentVolume(m_current_mute ? VOLUME_MINIMUM : m_current_volume))
+      if(m_omxPlayerAudio.SetCurrentVolume(m_current_mute ? VOLUME_MINIMUM : m_current_volume))
         m_change_volume = false;
     }