check for dx<90 not == 90 or 95 (maybe wont show warning if ply has 92 or 98)

This commit is contained in:
Darsu 2024-10-30 02:53:28 +07:00
parent 7394861bf9
commit aaa1d7caf8

View File

@ -330,7 +330,7 @@ ARC9.BadConfigStuff = {
title = ARC9:GetPhrase("badconf.directx.title"),
desc = ARC9:GetPhrase("badconf.directx.desc"),
solution = ARC9:GetPhrase("badconf.directx.solution"),
cause = function() return render.GetDXLevel() != 95 and render.GetDXLevel() != 90 end
cause = function() return (render.GetDXLevel() or 0) < 90 end
},
tickrate = {
title = ARC9:GetPhrase("badconf.tickrate.title"),