From 39bc8f0617d070101fb73c453fb882f20191bb2c Mon Sep 17 00:00:00 2001 From: "fix94.1" Date: Fri, 25 May 2012 22:46:39 +0000 Subject: [PATCH] -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) --- source/devicemounter/PartitionHandle.cpp | 2 +- source/plugin/plugin.cpp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/source/devicemounter/PartitionHandle.cpp b/source/devicemounter/PartitionHandle.cpp index 84ce0fcd..0fe9c875 100644 --- a/source/devicemounter/PartitionHandle.cpp +++ b/source/devicemounter/PartitionHandle.cpp @@ -128,7 +128,7 @@ bool PartitionHandle::Mount(int pos, const char * name) } 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; } else if(strncmp(GetFSName(pos), "LINUX", 5) == 0) diff --git a/source/plugin/plugin.cpp b/source/plugin/plugin.cpp index 84a909f1..4cf1a182 100644 --- a/source/plugin/plugin.cpp +++ b/source/plugin/plugin.cpp @@ -244,7 +244,7 @@ vector Plugin::CreateMplayerCEArguments(const char *filepath) 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) { @@ -256,7 +256,6 @@ vector Plugin::CreateMplayerCEArguments(const char *filepath) } args.push_back(dst); - args.push_back(string("-quiet")); return args; }