diff --git a/Changelog.md b/Changelog.md index 5a54453b42ec09c7ba763c452bce27998a639573..a22100429962a4a481e2c40d45e545509f839fe4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,10 @@ OpenCore Changelog ================== +#### v0.6.0 +- Fixed sound corruption with AudioDxe +- Fixed icon choice for Apple FW update in OpenCanopy + #### v0.5.9 - Added full HiDPI support in OpenCanopy - Improved OpenCanopy font rendering by using CoreText diff --git a/Platform/OpenCanopy/Views/BootPicker.c b/Platform/OpenCanopy/Views/BootPicker.c index 66ca8beee8edf10d155144f279f2f058e688f324..1b42ab24dcd678bad5adc169cf620485898e425d 100644 --- a/Platform/OpenCanopy/Views/BootPicker.c +++ b/Platform/OpenCanopy/Views/BootPicker.c @@ -775,6 +775,7 @@ BootPickerEntriesAdd ( case OC_BOOT_APPLE_OS: Status = CopyLabel (&VolumeEntry->Label, &GuiContext->Labels[LABEL_APPLE]); break; + case OC_BOOT_APPLE_FW_UPDATE: case OC_BOOT_APPLE_RECOVERY: Status = CopyLabel (&VolumeEntry->Label, &GuiContext->Labels[LABEL_APPLE_RECOVERY]); break; @@ -803,7 +804,7 @@ BootPickerEntriesAdd ( Status = CopyLabel (&VolumeEntry->Label, &GuiContext->Labels[LABEL_GENERIC_HDD]); break; default: - DEBUG ((DEBUG_WARN, "OCUI: Entry kind %d unsupported for label", Entry->Type)); + DEBUG ((DEBUG_WARN, "OCUI: Entry kind %d unsupported for label\n", Entry->Type)); return EFI_UNSUPPORTED; } } @@ -855,6 +856,7 @@ BootPickerEntriesAdd ( case OC_BOOT_APPLE_OS: SuggestedIcon = &GuiContext->Icons[ICON_APPLE][IconTypeIndex]; break; + case OC_BOOT_APPLE_FW_UPDATE: case OC_BOOT_APPLE_RECOVERY: SuggestedIcon = &GuiContext->Icons[ICON_APPLE_RECOVERY][IconTypeIndex]; if (SuggestedIcon->Buffer == NULL) { @@ -894,7 +896,7 @@ BootPickerEntriesAdd ( SuggestedIcon = &GuiContext->Icons[ICON_GENERIC_HDD][IconTypeIndex]; break; default: - DEBUG ((DEBUG_WARN, "OCUI: Entry kind %d unsupported for icon", Entry->Type)); + DEBUG ((DEBUG_WARN, "OCUI: Entry kind %d unsupported for icon\n", Entry->Type)); return EFI_UNSUPPORTED; }