~x3lectric/xbmc/svn-trunk

« back to all changes in this revision

Viewing changes to xbmc/MusicDatabase.cpp

  • Committer: jmarshallnz
  • Date: 2010-04-21 02:15:43 UTC
  • Revision ID: svn-v4:568bbfeb-2a22-0410-94d2-cc84cf5bfa90:trunk:29411
fixed: Only delete cached thumbs willy-nilly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2031
2031
      CStdString strThumb = m_pDS->fv("strThumb").get_asString();
2032
2032
      if (strThumb.Left(strThumbsDir.size()) == strThumbsDir)
2033
2033
      { // only delete cached thumbs
2034
 
        CTextureCache::Get().ClearCachedImage(strThumb);
 
2034
        CTextureCache::Get().ClearCachedImage(strThumb, true);
2035
2035
      }
2036
2036
      m_pDS->next();
2037
2037
    }