Skip to content

Commit

Permalink
#247 temporary fix for 571.96 overflow bug - thanks emoose :)
Browse files Browse the repository at this point in the history
  • Loading branch information
Orbmu2k committed Jan 24, 2025
1 parent 8b6c132 commit b5a0b00
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions nspector/Common/Meta/DriverSettingMetaService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ private List<uint> 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;
Expand Down

0 comments on commit b5a0b00

Please sign in to comment.