- fixed stupid little mistake in sourceflow cover loading

This commit is contained in:
fledge68 2013-10-06 12:51:45 +00:00
parent 570dd16c10
commit e4c5fbd9e1

View File

@ -2729,7 +2729,7 @@ const char *CMenu::getFrontPath(const dir_discHdr *element)
const char *coverPath = fmt("%s/front_covers/%s", m_sflowDir, coverImg); const char *coverPath = fmt("%s/front_covers/%s", m_sflowDir, coverImg);
if(m_cfg.getBool("SOURCEFLOW", "smallbox") || !fsop_FileExist(coverPath)) if(m_cfg.getBool("SOURCEFLOW", "smallbox") || !fsop_FileExist(coverPath))
{ {
coverPath = fmt("%s/front_covers/%s", m_sflowDir, coverImg); coverPath = fmt("%s/small_covers/%s", m_sflowDir, coverImg);
if(!fsop_FileExist(coverPath)) if(!fsop_FileExist(coverPath))
return element->path; return element->path;
} }