From 8901929305d444049443de867c2d3f169f6bc6ab Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 24 Oct 2020 12:23:54 +0200 Subject: [PATCH] - fixed placement of "PAR" text on statistics screen. --- wadsrc/static/zscript/ui/statscreen/statscreen_sp.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/ui/statscreen/statscreen_sp.zs b/wadsrc/static/zscript/ui/statscreen/statscreen_sp.zs index aaf5a202a10..a248d982c96 100644 --- a/wadsrc/static/zscript/ui/statscreen/statscreen_sp.zs +++ b/wadsrc/static/zscript/ui/statscreen/statscreen_sp.zs @@ -183,7 +183,7 @@ class DoomStatusScreen : StatusScreen DrawText (textFont, tcolor, statsx, SP_STATSY+lh, "$TXT_IMITEMS"); DrawText (textFont, tcolor, statsx, SP_STATSY+2*lh, "$TXT_IMSECRETS"); DrawText (textFont, tcolor, SP_TIMEX, SP_TIMEY, "$TXT_IMTIME"); - if (wbs.partime) screen.DrawText (textFont, tcolor, 160 + SP_TIMEX, SP_TIMEY, "$TXT_IMPAR"); + if (wbs.partime) DrawText (textFont, tcolor, 160 + SP_TIMEX, SP_TIMEY, "$TXT_IMPAR"); } drawPercent (printFont, 320 - statsx, SP_STATSY, cnt_kills[0], wbs.maxkills, true, tcolor);