From 4a1918238e867023191def9aee41d7c1e428e783 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Mon, 2 Aug 2021 16:46:15 -0600 Subject: [PATCH] Fix formatting --- OpenCore-Patcher.command | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/OpenCore-Patcher.command b/OpenCore-Patcher.command index e23591706..11f5e0a8d 100755 --- a/OpenCore-Patcher.command +++ b/OpenCore-Patcher.command @@ -229,17 +229,22 @@ Supported Options: B. Exit """ mojave_catalina = """Patches Root volume to fix misc issues such as: + - Graphics Acceleration - Nvidia: Tesla - Fermi (8000-500 series) - Intel: Ironlake - Sandy Bridge - AMD: TeraScale 1 and 2 (2000-6000 series) - Audio support for iMac7,1 and iMac8,1 + WARNING: Root Volume Patching is still in active development, please have all important user data backed up. Note when the system volume is patched, you can no longer have Delta updates or have FileVault enabled. + Supported Options: + 1. Patch System Volume +2. Unpatch System Volume (Experimental) B. Exit """ @@ -264,7 +269,7 @@ B. Exit change_menu = input("Patch System Volume?: ") if no_patch is not True and change_menu == "1": SysPatch.PatchSysVolume(self.constants.custom_model or self.computer.real_model, self.constants).start_patch() - elif no_patch is not True and change_menu == "2" and self.constants.detected_os > self.constants.catalina: + elif no_patch is not True and change_menu == "2": SysPatch.PatchSysVolume(self.constants.custom_model or self.computer.real_model, self.constants).start_unpatch() else: print("Returning to main menu")