From eceb36fff18551af4c488c4075cbb3e8e9b54f91 Mon Sep 17 00:00:00 2001 From: vit9696 Date: Fri, 13 Mar 2020 23:55:56 +0300 Subject: [PATCH] OcBootManagementLib: Rename BOOTCAMP Windows to Windows --- Changelog.md | 1 + Library/OcBootManagementLib/BootEntryManagement.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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"); } } }