- removed debug output.

This commit is contained in:
Christoph Oelckers 2021-05-31 11:56:34 +02:00
parent 9c60ab791b
commit ee60a92b69

View file

@ -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;