- missed some MAX's.

This commit is contained in:
Christoph Oelckers 2021-10-30 10:45:58 +02:00
commit 07a181090b
13 changed files with 28 additions and 28 deletions

View file

@ -390,7 +390,7 @@ CCMD(skyfog)
if (argv.argc() > 1)
{
// Do this only on the primary level.
primaryLevel->skyfog = MAX(0, (int)strtoull(argv[1], NULL, 0));
primaryLevel->skyfog = max(0, (int)strtoull(argv[1], NULL, 0));
}
}