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:
@@ -4090,7 +4090,7 @@ namespace VeraCrypt
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!config.SystemLoaderPresent || !activePartitionFound)
|
if ((!config.SystemLoaderPresent && !config.SystemPartition.IsGPT) || !activePartitionFound)
|
||||||
{
|
{
|
||||||
static bool confirmed = false;
|
static bool confirmed = false;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user