diff --git a/Changelog.md b/Changelog.md index c2312956..f0129693 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,8 @@ Lilu Changelog ============== +#### v1.6.4 +- Added AMD IGPU detection + #### v1.6.3 - Added Raptor Lake CPU definitions diff --git a/Lilu/Sources/kern_devinfo.cpp b/Lilu/Sources/kern_devinfo.cpp index c97464fb..5a37ac02 100644 --- a/Lilu/Sources/kern_devinfo.cpp +++ b/Lilu/Sources/kern_devinfo.cpp @@ -272,6 +272,10 @@ void DeviceInfo::grabDevicesFromPciRoot(IORegistryEntry *pciRoot) { // To distinguish the devices we use audio card presence as a marker. DBGLOG("dev", "marking audio device as HDEF at %s", safeString(v.audio->getName())); audioBuiltinAnalog = v.audio; + + if (v.video && v.vendor == WIOKit::VendorID::ATIAMD) { + videoBuiltin = v.video; + } } } }