From 7ea2f135dfe8f5a645f9da4fcb7c2dc35672f49e Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 21 Feb 2019 00:23:49 +0100 Subject: [PATCH] - did not save the latest changes. --- wadsrc/static/zscript/statscreen/statscreen.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wadsrc/static/zscript/statscreen/statscreen.txt b/wadsrc/static/zscript/statscreen/statscreen.txt index 38d71e8ef..5fddf02c0 100644 --- a/wadsrc/static/zscript/statscreen/statscreen.txt +++ b/wadsrc/static/zscript/statscreen/statscreen.txt @@ -341,7 +341,7 @@ class StatusScreen abstract play version("2.5") { x = drawNum(fnt, x, y, b, 2, false, color); x -= fnt.StringWidth("/"); - screen.DrawText (IntermissionFont, color, x, y, "/", nomove? DTA_CleanNoMove : DTA_Clean, true); + screen.DrawText (fnt, color, x, y, "/", nomove? DTA_CleanNoMove : DTA_Clean, true); } drawNum (fnt, x, y, p, -1, false, color); } @@ -383,7 +383,7 @@ class StatusScreen abstract play version("2.5") void drawTime (int x, int y, int t, bool no_sucks=false) { - drawTimeFont(printFont, x, y, t, Font.CR_UNTRANSLATED); + drawTimeFont(IntermissionFont, x, y, t, Font.CR_UNTRANSLATED); }