From a68ed40b96d1052aadaf228dd66455485af05b66 Mon Sep 17 00:00:00 2001 From: divverent Date: Thu, 9 Apr 2009 08:26:11 +0000 Subject: [PATCH] damn, set the RIGHT alpha to 1... to make the loading bar opaque git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8890 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_screen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cl_screen.c b/cl_screen.c index dfe310d0..0896ee56 100644 --- a/cl_screen.c +++ b/cl_screen.c @@ -791,7 +791,7 @@ void R_TimeReport_EndFrame(void) lines++; y = vid_conheight.integer - sb_lines - lines * 8; i = j = 0; - DrawQ_Fill(0, y, vid_conwidth.integer, lines * 8, 0, 0, 0, 1, 0); + DrawQ_Fill(0, y, vid_conwidth.integer, lines * 8, 0, 0, 0, 0.5, 0); while (string[i]) { j = i; @@ -1758,7 +1758,7 @@ static float SCR_DrawLoadingStack_r(loadingscreenstack_t *s, float y) len = strlen(s->msg); x = (vid_conwidth.integer - DrawQ_TextWidth_Font(s->msg, len, true, FONT_INFOBAR) * size) / 2; y -= size; - DrawQ_Fill(0, y, vid_conwidth.integer, size, 0, 0, 0, 0.5, 0); + DrawQ_Fill(0, y, vid_conwidth.integer, size, 0, 0, 0, 1, 0); DrawQ_String_Font(x, y, s->msg, len, size, size, 1, 1, 1, 1, 0, NULL, true, FONT_INFOBAR); total += size; } -- 2.39.2