mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-19 22:00:00 +10:00
Fix pathing typo
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user