-removed ignore case in ntfs lib to show things properly, dont

forget to reload cache if you use ntfs ;)
-fixed playback of movies on ntfs (thanks Extrems)
This commit is contained in:
fix94.1 2012-05-25 22:46:39 +00:00
parent 910017c96d
commit 39bc8f0617
2 changed files with 2 additions and 3 deletions

View File

@ -128,7 +128,7 @@ bool PartitionHandle::Mount(int pos, const char * name)
} }
else if(strncmp(GetFSName(pos), "NTFS", 4) == 0) else if(strncmp(GetFSName(pos), "NTFS", 4) == 0)
{ {
if(ntfsMount(MountNameList[pos].c_str(), interface, GetLBAStart(pos), CACHE, SECTORS, NTFS_SU | NTFS_RECOVER | NTFS_IGNORE_CASE)) if(ntfsMount(MountNameList[pos].c_str(), interface, GetLBAStart(pos), CACHE, SECTORS, NTFS_SU | NTFS_RECOVER))
return true; return true;
} }
else if(strncmp(GetFSName(pos), "LINUX", 5) == 0) else if(strncmp(GetFSName(pos), "LINUX", 5) == 0)

View File

@ -244,7 +244,7 @@ vector<string> Plugin::CreateMplayerCEArguments(const char *filepath)
if(strncmp(DeviceHandler::PathToFSName(filepath), "NTF", 3) == 0) if(strncmp(DeviceHandler::PathToFSName(filepath), "NTF", 3) == 0)
{ {
sprintf(dst, "ntfs_usb:%s", ptr); sprintf(dst, "ntfs:%s", ptr);
} }
else if(strncmp(device, "usb", 3) == 0) else if(strncmp(device, "usb", 3) == 0)
{ {
@ -256,7 +256,6 @@ vector<string> Plugin::CreateMplayerCEArguments(const char *filepath)
} }
args.push_back(dst); args.push_back(dst);
args.push_back(string("-quiet"));
return args; return args;
} }