diff --git a/Changelog.md b/Changelog.md index fb0d969a..a1ea1fe7 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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 diff --git a/Library/OcBootManagementLib/BootEntryManagement.c b/Library/OcBootManagementLib/BootEntryManagement.c index f7fe11fe..a7592ed9 100644 --- a/Library/OcBootManagementLib/BootEntryManagement.c +++ b/Library/OcBootManagementLib/BootEntryManagement.c @@ -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"); } } }