Skip to content

Commit

Permalink
Merge pull request #9163 from popcornmix/sinkpifix
Browse files Browse the repository at this point in the history
SinkPi: Correct setting of passthrough flag
  • Loading branch information
popcornmix committed Feb 20, 2016
2 parents e4dd1f5 + de0a5d5 commit aa0d2ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/AudioEngine/Sinks/AESinkPi.cpp
Expand Up @@ -186,7 +186,7 @@ bool CAESinkPi::Initialize(AEAudioFormat &format, std::string &device)
g_RBP.Initialize();

/* if we are raw need to let gpu know */
m_passthrough = m_format.m_dataFormat == AE_FMT_RAW;
m_passthrough = format.m_dataFormat == AE_FMT_RAW;

m_initDevice = device;
m_initFormat = format;
Expand Down

0 comments on commit aa0d2ce

Please sign in to comment.