mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
[core] fix FAT32 not proposed for Win ISOs with <4 GB install.wim
This commit is contained in:
parent
e987272287
commit
68a5a26956
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ static void SetAllowedFileSystems(void)
|
||||||
if ((image_path != NULL) && (img_report.has_4GB_file))
|
if ((image_path != NULL) && (img_report.has_4GB_file))
|
||||||
break;
|
break;
|
||||||
if (!HAS_WINDOWS(img_report) || (target_type != TT_BIOS) || allow_dual_uefi_bios) {
|
if (!HAS_WINDOWS(img_report) || (target_type != TT_BIOS) || allow_dual_uefi_bios) {
|
||||||
if (!HAS_WINTOGO(img_report) || ComboBox_GetCurItemData(hImageOption)) {
|
if (!HAS_WINTOGO(img_report) || (!ComboBox_GetCurItemData(hImageOption))) {
|
||||||
allowed_filesystem[FS_FAT16] = TRUE;
|
allowed_filesystem[FS_FAT16] = TRUE;
|
||||||
allowed_filesystem[FS_FAT32] = TRUE;
|
allowed_filesystem[FS_FAT32] = TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue