From 49dc305151dc0ec4af8284f08e1c09e95252608c Mon Sep 17 00:00:00 2001 From: Visual Ehrmanntraut <30368284+VisualEhrmanntraut@users.noreply.github.com> Date: Mon, 4 Nov 2024 19:44:37 +0200 Subject: [PATCH] feat: Change debug arg to -RSDebug --- SMCRadeonSensors/SMCRadeonSensors.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SMCRadeonSensors/SMCRadeonSensors.cpp b/SMCRadeonSensors/SMCRadeonSensors.cpp index bbf7726..66e0922 100644 --- a/SMCRadeonSensors/SMCRadeonSensors.cpp +++ b/SMCRadeonSensors/SMCRadeonSensors.cpp @@ -142,7 +142,7 @@ UInt16 PRODUCT_NAME::getCardCount() { return this->cards ? this->cards->getCount EXPORT extern "C" kern_return_t ADDPR(kern_start)(kmod_info_t *, void *) { lilu_get_boot_args("liludelay", &ADDPR(debugPrintDelay), sizeof(ADDPR(debugPrintDelay))); - ADDPR(debugEnabled) = checkKernelArgument("-rsensordbg") || checkKernelArgument("-liludbgall"); + ADDPR(debugEnabled) = checkKernelArgument("-RSDebug") || checkKernelArgument("-liludbgall"); return KERN_SUCCESS; }