From 03b92752444f0a65309a9a853643ff62a8530656 Mon Sep 17 00:00:00 2001
From: Christoph Oelckers <coelckers@users.noreply.github.com>
Date: Sat, 1 May 2021 23:59:45 +0200
Subject: [PATCH] - removed debug printf.

---
 wadsrc/static/zscript/games/duke/dukegame.zs | 1 -
 1 file changed, 1 deletion(-)

diff --git a/wadsrc/static/zscript/games/duke/dukegame.zs b/wadsrc/static/zscript/games/duke/dukegame.zs
index e0e960b5e..ef06f96bd 100644
--- a/wadsrc/static/zscript/games/duke/dukegame.zs
+++ b/wadsrc/static/zscript/games/duke/dukegame.zs
@@ -92,7 +92,6 @@ struct Duke native
 			fsmode = FSMode_Fit640x400;
 		}
 		if (align != -1) x -= SmallFont.StringWidth(t) * (align == 0 ? 0.5 : 1);
-		if (shade) Console.Printf("%s: shade = %d", t, shade);
 		Screen.DrawText(SmallFont, Font.CR_UNDEFINED, x, y + 2, t, DTA_FullscreenScale, fsmode, DTA_TranslationIndex, Translation.MakeID(Translation_Remap, trans), DTA_Color, Raze.shadeToLight(shade));
 	}