mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-24 21:02:14 +00:00
CLIENT: Draw Achievements Overlay over other HUD elements
This commit is contained in:
parent
28a51dbb96
commit
2fc682810d
1 changed files with 2 additions and 3 deletions
|
@ -1690,9 +1690,6 @@ void(float width, float height) HUD_Draw =
|
|||
{
|
||||
if (cvar("cl_cinematic"))
|
||||
return;
|
||||
|
||||
HUD_Achievements(width, height);
|
||||
|
||||
|
||||
if (!getstatf(STAT_SPECTATING) && (getstatf(STAT_HEALTH) > 1) && !score_show)
|
||||
{
|
||||
|
@ -1761,6 +1758,8 @@ void(float width, float height) HUD_Draw =
|
|||
|
||||
if (score_show)
|
||||
HUD_Scores();
|
||||
|
||||
HUD_Achievements(width, height);
|
||||
|
||||
if (fade_time > time)
|
||||
HUD_Fade();
|
||||
|
|
Loading…
Reference in a new issue