From b5a0b0091acf2abb0e85324378c98291178090b4 Mon Sep 17 00:00:00 2001 From: Orbmu2k Date: Fri, 24 Jan 2025 16:12:31 +0100 Subject: [PATCH] #247 temporary fix for 571.96 overflow bug - thanks emoose :) --- nspector/Common/Meta/DriverSettingMetaService.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nspector/Common/Meta/DriverSettingMetaService.cs b/nspector/Common/Meta/DriverSettingMetaService.cs index 9615659..58b531f 100644 --- a/nspector/Common/Meta/DriverSettingMetaService.cs +++ b/nspector/Common/Meta/DriverSettingMetaService.cs @@ -30,6 +30,11 @@ private List InitSettingIds() private SettingMeta GetDriverSettingMetaInternal(uint settingId) { + // temporary fix for 571.96 overflow bug by emoose + if ((settingId & 0xFFFFF000) == 0x10c7d000) + return null; + + var values = new NVDRS_SETTING_VALUES(); values.version = nvw.NVDRS_SETTING_VALUES_VER; uint valueCount = 255;