env_fog: default color values should be 255,255,255 and not normalized.

This commit is contained in:
Marco Cawthorne 2023-04-30 18:00:11 -07:00
parent 89e3b961e8
commit 054e703177
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ env_fog::env_fog(void)
m_flStartDist = 0;
m_flEndDist = 512;
m_flDensity = 1.0f;
m_vecColor = [1, 1, 1];
m_vecColor = [255, 255, 255];
m_bEnabled = true;
}