mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix max draw dist limit so high that it overflows
This commit is contained in:
parent
8ae80a58b9
commit
e44cbeab96
1 changed files with 2 additions and 2 deletions
|
|
@ -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"},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue