OcBootManagementLib: Rename BOOTCAMP Windows to Windows

This commit is contained in:
vit9696 2020-03-13 23:55:56 +03:00
parent 6d61426da5
commit eceb36fff1
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ OpenCore Changelog
- Added `boot.efi` debug protocol support for 10.15.4+
- Added `boot.efi` performance logging for 10.15.4+
- Added `ProtectUefiServices` quirk to fix `DevirtualiseMmio` on Z390
- Replaced `BOOTCAMP Windows` with `Windows` to match the original
#### v0.5.6
- Various improvements to builtin text renderer

View File

@ -100,7 +100,7 @@ OcDescribeBootEntry (
if (!EFI_ERROR (Status)) {
BootEntry->Type = OC_BOOT_WINDOWS;
if (BootEntry->Name == NULL) {
BootEntry->Name = AllocateCopyPool (sizeof (L"BOOTCAMP Windows"), L"BOOTCAMP Windows");
BootEntry->Name = AllocateCopyPool (sizeof (L"Windows"), L"Windows");
}
}
}