mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-12-25 03:11:58 +01:00
-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:
parent
910017c96d
commit
39bc8f0617
@ -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)
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user