client: Don't change loading bar color

Don't change loading bar color (fix yellow loading bar in Half-Rats Parasomnia, it should be white)
This commit is contained in:
Владислав Сухов 2021-10-24 18:22:21 +06:00 committed by a1batross
parent c9e4912a2a
commit 1042291ad6
1 changed files with 1 additions and 13 deletions

View File

@ -968,21 +968,9 @@ static void CL_DrawLoadingOrPaused( qboolean paused, float percent )
if( !paused )
{
float step, s2;
ref.dllFuncs.Color4ub( 128, 128, 128, 255 );
ref.dllFuncs.Color4ub( 255, 255, 255, 255 );
ref.dllFuncs.GL_SetRenderMode( kRenderTransTexture );
ref.dllFuncs.R_DrawStretchPic( x, y, width, height, 0, 0, 1, 1, cls.loadingBar );
step = (float)width / 100.0f;
right = (int)ceil( percent * step );
s2 = (float)right / width;
width = right;
ref.dllFuncs.Color4ub( 208, 152, 0, 255 );
ref.dllFuncs.GL_SetRenderMode( kRenderTransTexture );
ref.dllFuncs.R_DrawStretchPic( x, y, width, height, 0, 0, s2, 1, cls.loadingBar );
ref.dllFuncs.Color4ub( 255, 255, 255, 255 );
}
else
{