diff --git a/Changelog.md b/Changelog.md index fb0d969a5a403c980b1cd453551b39f44e8b3cbe..a1ea1fe7155a8c33d9289925050ef5cdf265b81a 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 f7fe11feb3f64eb9f35690ecf392e8856bd8d0e1..a7592ed9e4030df361d885acdae8d104e09991ec 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"); } } }