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
1 changed files with 1 additions and 1 deletions

View File

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