Skip to content

Commit

Permalink
Insert one space between channel names (looks better in the AudioDSP …
Browse files Browse the repository at this point in the history
…OSD)
  • Loading branch information
AchimTuran authored and popcornmix committed Mar 1, 2017
1 parent 9347e8d commit 9ea2c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/AudioEngine/Utils/AEChannelInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ CAEChannelInfo::operator std::string() const
for (unsigned int i = 0; i < m_channelCount - 1; ++i)
{
s.append(GetChName(m_channels[i]));
s.append(",");
s.append(", ");
}
s.append(GetChName(m_channels[m_channelCount-1]));

Expand Down

0 comments on commit 9ea2c26

Please sign in to comment.