From 377fdc8de17352bf444150cf3fc6f4ef170c1483 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Wed, 5 May 2021 15:32:51 -0600 Subject: [PATCH] Fix crashing on Nvidia iGPUs --- Resources/SysPatch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/SysPatch.py b/Resources/SysPatch.py index 10397f354..8756ebb65 100644 --- a/Resources/SysPatch.py +++ b/Resources/SysPatch.py @@ -159,7 +159,7 @@ class PatchSysVolume: # print("- Merging legacy Intel 3rd Gen Kexts and Bundles") # self.add_new_binaries(ModelArray.AddIntelGen3Accel, self.constants.legacy_intel_gen3_path) elif igpu_vendor == self.constants.pci_nvidia: - if not dgpu_devices: + if not dgpu_vendor: # Avoid patching twice, as Nvidia iGPUs will only have Nvidia dGPUs print("- Merging legacy Nvidia Kexts and Bundles") self.delete_old_binaries(ModelArray.DeleteNvidiaAccel11)