1
0
Fork 0
forked from fte/fteqw

Fix graphical glitch on the sbar when cl_sbar is 0 and viewsize < 100.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@6207 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Eukara 2022-03-07 04:18:00 +00:00
parent 5f80e2b0a3
commit e55f21585e

View file

@ -2953,7 +2953,7 @@ void Sbar_Draw (playerview_t *pv)
{ {
if (!cls.deathmatch) if (!cls.deathmatch)
{ {
if (cl_sbar.value) if (cl_sbar.value || (scr_viewsize.value<100))
Sbar_DrawPic (0, 0, 320, 24, sb_scorebar); Sbar_DrawPic (0, 0, 320, 24, sb_scorebar);
Sbar_CoopScoreboard (); Sbar_CoopScoreboard ();
} }