diff options
author | ametovic <ametovic@svn> | 2010-11-03 13:34:29 +0000 |
---|---|---|
committer | ametovic <ametovic@svn> | 2010-11-03 13:34:29 +0000 |
commit | 05b044961854efccce1977081c4bac2bdb495291 (patch) | |
tree | 755f6bf170c34e92bb499efb5e9f572bb265abe1 | |
parent | fb2432c369c76cb6504fbd2feeaedb73bd18aac5 (diff) |
fixed: || was not supposed to be here
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35147 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | xbmc/utils/LabelFormatter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/utils/LabelFormatter.cpp b/xbmc/utils/LabelFormatter.cpp index 4b93bb4534..e0337689ab 100644 --- a/xbmc/utils/LabelFormatter.cpp +++ b/xbmc/utils/LabelFormatter.cpp @@ -292,7 +292,7 @@ CStdString CLabelFormatter::GetMaskContent(const CMaskString &mask, const CFileI } break; case 'X': // Bitrate - if( !item->m_bIsFolder || item->m_dwSize != 0 ) + if( !item->m_bIsFolder && item->m_dwSize != 0 ) value.Format("%i kbps", item->m_dwSize); break; case 'W': // Listeners |