diff --git a/resources/wx_gui/gui_cache_os_update.py b/resources/wx_gui/gui_cache_os_update.py index 01ff321531..83888adc08 100644 --- a/resources/wx_gui/gui_cache_os_update.py +++ b/resources/wx_gui/gui_cache_os_update.py @@ -43,7 +43,7 @@ def __init__(self, parent: wx.Frame, title: str, global_constants: constants.Con self.kdk_obj: kdk_handler.KernelDebugKitObject = None def _kdk_thread_spawn(): - self.kdk_obj = kdk_handler.KernelDebugKitObject(self.constants, self.os_data[1], self.os_data[0], passive=True) + self.kdk_obj = kdk_handler.KernelDebugKitObject(self.constants, self.os_data[1], self.os_data[0], passive=True, check_backups_only=True) kdk_thread = threading.Thread(target=_kdk_thread_spawn) kdk_thread.start()