diff --git a/Changelog.md b/Changelog.md index b7477b69..652c4be9 100644 --- a/Changelog.md +++ b/Changelog.md @@ -9,6 +9,7 @@ OpenCore Changelog - Fixed audio stream position reporting on non-Intel platforms - Added `Firmware` mode to `ResetSystem` to reboot into preferences - Replaced `BlacklistAppleUpdate` with `run-efi-updater` NVRAM variable +- Fixed reset value in `FadtEnableReset` ACPI quirk #### v0.5.9 - Added full HiDPI support in OpenCanopy diff --git a/Library/OcAcpiLib/OcAcpiLib.c b/Library/OcAcpiLib/OcAcpiLib.c index 40acc5de..f7ac21b3 100755 --- a/Library/OcAcpiLib/OcAcpiLib.c +++ b/Library/OcAcpiLib/OcAcpiLib.c @@ -1159,6 +1159,7 @@ AcpiFadtEnableReset ( Fadt->ResetReg.RegisterBitOffset = 0; Fadt->ResetReg.AccessSize = EFI_ACPI_6_2_BYTE; Fadt->ResetReg.Address = 0xCF9; + Fadt->ResetValue = 6; } Fadt->Header.Checksum = 0;