From 86f2c96d9a5807cc8e9e45e1a75d4f091e05dc82 Mon Sep 17 00:00:00 2001 From: Visual Ehrmanntraut <30368284+VisualEhrmanntraut@users.noreply.github.com> Date: Sat, 21 Sep 2024 23:56:12 +0300 Subject: [PATCH] fix: Set max log severity value to 0xFF --- NootedRed/X6000FB.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NootedRed/X6000FB.cpp b/NootedRed/X6000FB.cpp index c3c96d0..833fcd8 100644 --- a/NootedRed/X6000FB.cpp +++ b/NootedRed/X6000FB.cpp @@ -495,7 +495,7 @@ void *X6000FB::wrapLinkCreate(void *data) { bool X6000FB::wrapInitWithPciInfo(void *that, void *pciDevice) { auto ret = FunctionCast(wrapInitWithPciInfo, callback->orgInitWithPciInfo)(that, pciDevice); getMember(that, 0x28) = 0xFFFFFFFFFFFFFFFF; // Enable all log types - getMember(that, 0x30) = 0xFFFFFFFF; // Enable all log severities + getMember(that, 0x30) = 0xFF; // Enable all log severities return ret; }