From a8ec143f3ef879085f45e5dc0f81ea6ca0e2042b Mon Sep 17 00:00:00 2001 From: Per Inge Mathisen Date: Sat, 24 Feb 2007 17:13:08 +0000 Subject: [PATCH] Remove overzealous log call in previous commit. git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@1171 4a71c877-e1ca-e34f-864e-861f7616d084 --- lib/ivis_opengl/piestate.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/ivis_opengl/piestate.c b/lib/ivis_opengl/piestate.c index f62fa726a..c98de20d4 100644 --- a/lib/ivis_opengl/piestate.c +++ b/lib/ivis_opengl/piestate.c @@ -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; } }