mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-24 03:53:29 +01: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:
parent
5c009d449e
commit
3764f7e8b9
@ -4090,7 +4090,7 @@ namespace VeraCrypt
|
||||
}
|
||||
}
|
||||
|
||||
if (!config.SystemLoaderPresent || !activePartitionFound)
|
||||
if ((!config.SystemLoaderPresent && !config.SystemPartition.IsGPT) || !activePartitionFound)
|
||||
{
|
||||
static bool confirmed = false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user