Remove overzealous log call in previous commit.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1171 4a71c877-e1ca-e34f-864e-861f7616d084
master
Per Inge Mathisen 2007-02-24 17:13:08 +00:00
parent d5b70b2384
commit a8ec143f3e
1 changed files with 0 additions and 3 deletions

View File

@ -94,8 +94,6 @@ void pie_SetFogStatus(BOOL val)
if (rendStates.fog != val)
{
rendStates.fog = val;
debug(LOG_FOG, "pie_SetFogStatus set %s", val ? "ON" : "OFF");
if (rendStates.fog) {
fog.argb = pie_GetFogColour();
fog_colour[0] = fog.byte.r/255.0f;
@ -120,7 +118,6 @@ void pie_SetFogStatus(BOOL val)
//fog disabled so turn it off if not off already
if (rendStates.fog != FALSE)
{
debug(LOG_FOG, "pie_SetFogStatus(%s) but fog disabled", val ? "ON" : "OFF");
rendStates.fog = FALSE;
}
}