- do not show par time when it's zero

https://forum.zdoom.org/viewtopic.php?t=64551
This commit is contained in:
alexey.lysiuk 2019-05-13 11:04:55 +03:00
parent 5f12191c05
commit 7298ba2707

View file

@ -197,7 +197,11 @@ class DoomStatusScreen : StatusScreen
{
drawTimeFont (printFont, 160 - SP_TIMEX, SP_TIMEY + lh, cnt_total_time, tcolor);
}
drawTimeFont (printFont, 320 - SP_TIMEX, SP_TIMEY, cnt_par, tcolor);
if (wbs.partime)
{
drawTimeFont (printFont, 320 - SP_TIMEX, SP_TIMEY, cnt_par, tcolor);
}
}
}