mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-27 22:42:29 +00:00
- do not show par time when it's zero
https://forum.zdoom.org/viewtopic.php?t=64551
This commit is contained in:
parent
5f12191c05
commit
7298ba2707
1 changed files with 5 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue