2
0
Fork 0
mirror of https://github.com/pbatard/rufus.git synced 2024-08-31 14:06:08 +02:00

[core] fix FAT32 not proposed for Win ISOs with <4 GB install.wim

This commit is contained in:
Pete Batard 2020-09-23 16:06:15 +02:00
parent e987272287
commit 68a5a26956
No known key found for this signature in database
GPG key ID: AC059B1E960B22A3

View file

@ -177,7 +177,7 @@ static void SetAllowedFileSystems(void)
if ((image_path != NULL) && (img_report.has_4GB_file))
break;
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_FAT32] = TRUE;
}