Fix pathing typo

This commit is contained in:
Mykola Grymalyuk
2021-04-01 15:18:54 -06:00
parent 4e40da79bb
commit 5a700c729e
+6 -6
View File
@@ -246,21 +246,21 @@ class Constants:
# Apple Frameworks # Apple Frameworks
@property @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 @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 @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 # Apple LaunchDaemons
@property @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 # Apple PrivateFrameworks
@property @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 @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_values = {
"CSR_ALLOW_UNTRUSTED_KEXTS ": False, # 0x1 - Introduced in El Capitan "CSR_ALLOW_UNTRUSTED_KEXTS ": False, # 0x1 - Introduced in El Capitan