aboutsummaryrefslogtreecommitdiffstats
path: root/code/q3_ui/ui_credits.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/q3_ui/ui_credits.c')
-rw-r--r--code/q3_ui/ui_credits.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/code/q3_ui/ui_credits.c b/code/q3_ui/ui_credits.c
index db6f536..7baee61 100644
--- a/code/q3_ui/ui_credits.c
+++ b/code/q3_ui/ui_credits.c
@@ -166,6 +166,12 @@ UI_CreditMenu
===============
*/
void UI_CreditMenu( void ) {
+ /* This UI_FillRect() hack will blank the borders if you're in widescreen,
+ so you get a completely black background instead of stripes from the
+ previous frame on each side of the credits.. */
+ const float black[4] = { 0.0f, 0.0f, 0.0f, 1.0f };
+ UI_FillRect(0 - uis.bias, 0, (640.0f / uis.xscale) * 2.0f, 480.0f / uis.yscale, black);
+
memset( &s_credits, 0 ,sizeof(s_credits) );
s_credits.menu.draw = UI_CreditMenu_Draw;