Skip to content

Commit

Permalink
- fixed placement of "PAR" text on statistics screen.
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Oct 24, 2020
1 parent 54ddb40 commit 8901929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wadsrc/static/zscript/ui/statscreen/statscreen_sp.zs
Expand Up @@ -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);
Expand Down

0 comments on commit 8901929

Please sign in to comment.