From ee60a92b69c3c62336657fb84de621f3507ca8bc Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 31 May 2021 11:56:34 +0200 Subject: [PATCH] - removed debug output. --- wadsrc/static/zscript/statusbar.zs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/wadsrc/static/zscript/statusbar.zs b/wadsrc/static/zscript/statusbar.zs index 5a23dab13..f667b541b 100644 --- a/wadsrc/static/zscript/statusbar.zs +++ b/wadsrc/static/zscript/statusbar.zs @@ -78,8 +78,6 @@ class RazeStatusBar : StatusBarCore String text; - Console.Printf("Stat: scale = %f, spacing = %f", scale, spacing); - text = String.Format("%sT: %s%d:%02d", info.letterColor, info.standardColor, stats.time / 60000, (stats.time % 60000) / 1000); drawStatText(info.statFont, 2 * hud_statscale, y3, text, scale); @@ -142,8 +140,6 @@ class RazeStatusBar : StatusBarCore if (cluster) volname = cluster.name; if (volname.length() == 0 && am_nameontop) y = 1; - Console.Printf("AM: scale = %f, spacing = %f", scale, spacing); - Screen.DrawText(info.statfont, Font.CR_UNTRANSLATED, 2 * hud_statscale, y, mapname, DTA_FullscreenScale, FSMode_ScaleToHeight, DTA_VirtualWidth, 320, DTA_VirtualHeight, 200, DTA_ScaleX, scale, DTA_ScaleY, scale, DTA_KeepRatio, true); y -= spacing;