gui.py: Fix DEBUG kext support

This commit is contained in:
Mykola Grymalyuk
2022-01-20 19:38:41 -07:00
parent d1f9170390
commit 54616ea385

View File

@@ -1631,9 +1631,11 @@ class wx_python_gui:
if self.kext_checkbox.GetValue():
print("Kext mode enabled")
self.constants.kext_debug = True
self.constants.kext_variant = "DEBUG"
else:
print("Kext mode disabled")
self.constants.kext_debug = False
self.constants.kext_variant = "RELEASE"
def oc_checkbox_click(self, event=None):
if self.opencore_checkbox.GetValue():