aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvdrfan <vdrfan@svn>2010-10-03 08:34:57 +0000
committervdrfan <vdrfan@svn>2010-10-03 08:34:57 +0000
commit606f4d6e61c54c6ff587e9e535b1146ea0450ec7 (patch)
treee3a44876d9b4ce894a7c3f4e229839701bd4c5b3
parentd4c1c7865a3b87e0bfb3348d28995ff64c629bf3 (diff)
fixed: unable to perform a manual lookup on bdmv folders when not stacked
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@34382 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r--xbmc/FileItem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/FileItem.cpp b/xbmc/FileItem.cpp
index 6da58ac9a1..ce060883a7 100644
--- a/xbmc/FileItem.cpp
+++ b/xbmc/FileItem.cpp
@@ -1969,7 +1969,7 @@ void CFileItemList::Stack()
#ifdef HAVE_LIBBLURAY
if (dvdPath.IsEmpty())
{
- CUtil::AddFileToFolder(item->m_strPath, "BDMV/index.bdmv", path);
+ CUtil::AddFileToFolder(item->m_strPath, "index.bdmv", path);
if (CFile::Exists(path))
dvdPath = path;
}