mirror of
https://github.com/ZDoom/ZDRay.git
synced 2025-03-13 03:33:30 +00:00
Rename lm_sampledistance
to lm_sampledist
to match future versions of ZDRay
This commit is contained in:
parent
ee272c7ee8
commit
21b7a26f24
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ void FLevel::SetupLights()
|
||||||
lightcolor = atoi(key.value);
|
lightcolor = atoi(key.value);
|
||||||
printf("Sun color: %d (%X)\n", lightcolor, lightcolor);
|
printf("Sun color: %d (%X)\n", lightcolor, lightcolor);
|
||||||
}
|
}
|
||||||
else if (!stricmp(key.key, "lm_sampledistance"))
|
else if (!stricmp(key.key, "lm_sampledist"))
|
||||||
{
|
{
|
||||||
DefaultSamples = atoi(key.value);
|
DefaultSamples = atoi(key.value);
|
||||||
if (DefaultSamples < 8) DefaultSamples = 8;
|
if (DefaultSamples < 8) DefaultSamples = 8;
|
||||||
|
|
Loading…
Reference in a new issue