1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

Windows: Fix false warning in case of GPT about Windows not installed on boot drive. This is caused by the fact that presence of "bootmgr" file is not mandatory in case of EFI Boot Loader.

This commit is contained in:
Mounir IDRASSI
2017-06-09 01:16:51 +02:00
parent 5c009d449e
commit 3764f7e8b9

View File

@@ -4090,7 +4090,7 @@ namespace VeraCrypt
}
}
if (!config.SystemLoaderPresent || !activePartitionFound)
if ((!config.SystemLoaderPresent && !config.SystemPartition.IsGPT) || !activePartitionFound)
{
static bool confirmed = false;