Fix max draw dist limit so high that it overflows

This commit is contained in:
Sally Coolatta 2024-04-25 15:19:43 -04:00
parent 8ae80a58b9
commit e44cbeab96

View file

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