CLIENT: Draw Achievements Overlay over other HUD elements

This commit is contained in:
MotoLegacy 2024-01-13 10:39:11 -05:00
parent 28a51dbb96
commit 2fc682810d

View file

@ -1691,9 +1691,6 @@ void(float width, float height) HUD_Draw =
if (cvar("cl_cinematic")) if (cvar("cl_cinematic"))
return; return;
HUD_Achievements(width, height);
if (!getstatf(STAT_SPECTATING) && (getstatf(STAT_HEALTH) > 1) && !score_show) if (!getstatf(STAT_SPECTATING) && (getstatf(STAT_HEALTH) > 1) && !score_show)
{ {
Draw_Crosshair(); Draw_Crosshair();
@ -1762,6 +1759,8 @@ void(float width, float height) HUD_Draw =
if (score_show) if (score_show)
HUD_Scores(); HUD_Scores();
HUD_Achievements(width, height);
if (fade_time > time) if (fade_time > time)
HUD_Fade(); HUD_Fade();
} }