Merge branch 'fix-draw-dist' into 'master'

Fix max draw dist limit so high that it overflows

See merge request KartKrew/Kart!2299
This commit is contained in:
Sal 2024-04-25 21:19:00 +00:00
commit 8247f7cd2d

View file

@ -341,8 +341,8 @@ consvar_t cv_drawdist = Player("drawdist", "Normal").values({
{8192, "Normal"},
{12288, "Far"},
{16384, "Farther"},
{24576, "Extreme"},
{32768, "Penultimate"},
{20480, "Extreme"},
{24576, "Penultimate"},
{0, "Infinite"},
});