From 5a700c729e8f3e8a69c03ec77d34c908682fce89 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Thu, 1 Apr 2021 15:18:54 -0600 Subject: [PATCH] Fix pathing typo --- Resources/Constants.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Resources/Constants.py b/Resources/Constants.py index 503d8c3c3..3a6e700b3 100644 --- a/Resources/Constants.py +++ b/Resources/Constants.py @@ -246,21 +246,21 @@ class Constants: # Apple Frameworks @property - def coredisplay_path(self): return self.payload_apple_frameworks_path / Path("CoreDisplay.framework") + def coredisplay_path(self): return self.payload_apple_frameworks_path_accel / Path("CoreDisplay.framework") @property - def iosurface_f_path(self): return self.payload_apple_frameworks_path / Path("IOSurface.framework") + def iosurface_f_path(self): return self.payload_apple_frameworks_path_accel / Path("IOSurface.framework") @property - def opengl_path(self): return self.payload_apple_frameworks_path / Path("OpenGL.framework") + def opengl_path(self): return self.payload_apple_frameworks_path_accel / Path("OpenGL.framework") # Apple LaunchDaemons @property - def hiddhack_path(self): return self.payload_apple_lauchd_path / Path("HiddHack.plist") + def hiddhack_path(self): return self.payload_apple_lauchd_path_accel / Path("HiddHack.plist") # Apple PrivateFrameworks @property - def gpusupport_path(self): return self.payload_apple_private_frameworks_path / Path("GPUSupport.framework") + def gpusupport_path(self): return self.payload_apple_private_frameworks_path_accel / Path("GPUSupport.framework") @property - def skylight_path(self): return self.payload_apple_private_frameworks_path / Path("SkyLight.framework") + def skylight_path(self): return self.payload_apple_private_frameworks_path_accel / Path("SkyLight.framework") csr_values = { "CSR_ALLOW_UNTRUSTED_KEXTS ": False, # 0x1 - Introduced in El Capitan