mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-28 06:53:40 +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,9 +197,13 @@ class DoomStatusScreen : StatusScreen
|
|||
{
|
||||
drawTimeFont (printFont, 160 - SP_TIMEX, SP_TIMEY + lh, cnt_total_time, tcolor);
|
||||
}
|
||||
|
||||
if (wbs.partime)
|
||||
{
|
||||
drawTimeFont (printFont, 320 - SP_TIMEX, SP_TIMEY, cnt_par, tcolor);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class RavenStatusScreen : DoomStatusScreen
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue