Change fog start to use default value.

This commit is contained in:
TonyPeng 2014-07-08 12:48:01 -07:00
parent 4e04cecd8c
commit e212f9f42e

View file

@ -544,7 +544,7 @@ void VoxelSystem::initVoxelMemory() {
glFogfv(GL_FOG_COLOR, fogColor);
glFogf(GL_FOG_DENSITY, 0.25f);
glHint(GL_FOG_HINT, GL_DONT_CARE);
glFogf(GL_FOG_START, 20.0f);
glFogf(GL_FOG_START, 0.0f);
glFogf(GL_FOG_END, _farHazeDistance);
glEnable(GL_FOG);
}