diff --git a/Changelog.md b/Changelog.md index d599e6378f54aaa26cbb2aa03633dd6e2838657f..a8afc18dc41b2c281feef87b5c5f48aed9b1c144 100644 --- a/Changelog.md +++ b/Changelog.md @@ -25,6 +25,7 @@ OpenCore Changelog - Added `AppleFramebufferInfo` protocol implementation and override - Fixed serial initialisation when file logging is disabled - Fixed FSBFrequency reporting on Meron and similar CPUs +- Fixed incorrect volume icon dimension requirements in OpenCanopy #### v0.5.9 - Added full HiDPI support in OpenCanopy diff --git a/Platform/OpenCanopy/Views/BootPicker.c b/Platform/OpenCanopy/Views/BootPicker.c index 1b42ab24dcd678bad5adc169cf620485898e425d..8c945f46a113fe5b391bd3181c261f61484ed4db 100644 --- a/Platform/OpenCanopy/Views/BootPicker.c +++ b/Platform/OpenCanopy/Views/BootPicker.c @@ -834,8 +834,8 @@ BootPickerEntriesAdd ( IconFileData, IconFileSize, GuiContext->Scale, - BOOT_ENTRY_ICON_DIMENSION * GuiContext->Scale, - BOOT_ENTRY_ICON_DIMENSION * GuiContext->Scale, + BOOT_ENTRY_ICON_DIMENSION, + BOOT_ENTRY_ICON_DIMENSION, FALSE ); FreePool (IconFileData);