forked from len0rd/rockbox
Add "FAT" as supported filesystem on Windows.
In some cases Windows reports the string "FAT" (without any type number). Accept that as well. Change-Id: Ia278ccc574913106cb5ca6751af70125f769c59c
This commit is contained in:
parent
b943c59f35
commit
5c31063a3f
1 changed files with 1 additions and 1 deletions
|
@ -573,7 +573,7 @@ QStringList Utils::mountpoints(enum MountpointsFilter type)
|
||||||
QStringList supported;
|
QStringList supported;
|
||||||
QStringList tempList;
|
QStringList tempList;
|
||||||
#if defined(Q_OS_WIN32)
|
#if defined(Q_OS_WIN32)
|
||||||
supported << "FAT32" << "FAT16" << "FAT12" << "HFS";
|
supported << "FAT32" << "FAT16" << "FAT12" << "FAT" << "HFS";
|
||||||
QFileInfoList list = QDir::drives();
|
QFileInfoList list = QDir::drives();
|
||||||
for(int i=0; i<list.size();i++)
|
for(int i=0; i<list.size();i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue