Removed inset for alien health/armor display

This commit is contained in:
pierow 2021-01-27 20:15:12 -05:00
parent a1f5c3ed0d
commit 54e54ce681
1 changed files with 5 additions and 5 deletions

View File

@ -122,10 +122,10 @@ int CHudBattery::Draw(float flTime)
int iOffset = (m_prc1->bottom - m_prc1->top)/6;
int theInset = 0;
if(gHUD.GetIsAlien())
{
theInset = ScreenWidth()*kResourceEnergyBarWidth;
}
//if(gHUD.GetIsAlien())
//{
// theInset = ScreenWidth()*kResourceEnergyBarWidth;
//}
int theViewport[4];
gHUD.GetViewport(theViewport);
@ -150,7 +150,7 @@ int CHudBattery::Draw(float flTime)
x += (m_prc1->right - m_prc1->left);
x = gHUD.DrawHudNumber(x, y, DHN_3DIGITS | DHN_DRAWZERO, m_iBat, r, g, b);
return 1;
}