Docs: Fix some comments

This commit is contained in:
vit9696 2020-08-29 07:42:10 +03:00
parent 47b0c0a980
commit 2208b89e43
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ OpenCore Changelog
- Fixed `XhciPortLimit` quirk on 10.12.6 and possibly other versions
- Fixed `IncreasePciBarSize` quirk on 10.11.5 and possibly other versions
- Fixed `LapicKernelPanic` quirk on 10.8.5 and possibly other versions
- Fixed hard-lock caused by XHCI SMI in OpenDuetPkg
- Fixed hard-lock caused by EHCI SMI in OpenDuetPkg
#### v0.6.0
- Fixed sound corruption with AudioDxe

View File

@ -118,8 +118,8 @@ typedef enum OC_PICKER_MODE_ {
/**
macOS Kernel capabilities.
**/
#define OC_KERN_CAPABILITY_K32_32 BIT0 ///< Supports K32 with 32-bit apps (10.4~10.6)
#define OC_KERN_CAPABILITY_K32_64 BIT1 ///< Supports K32 with 64-bit apps (10.7)
#define OC_KERN_CAPABILITY_K32_32 BIT0 ///< Supports K32 with i386 requirement (10.4~10.6)
#define OC_KERN_CAPABILITY_K32_64 BIT1 ///< Supports K32 with x86_64 requirement (10.7)
#define OC_KERN_CAPABILITY_K64 BIT2 ///< Supports K64 (10.6+)
/**