From 305fe12335ab67ced717eb1d223f16eaa4b194ab Mon Sep 17 00:00:00 2001 From: icculus Date: Mon, 14 Sep 2009 21:08:08 +0000 Subject: Threw in a hack to fix rendering of credits menu in widescreen. Fixes Bugzilla #2744. git-svn-id: svn://svn.icculus.org/quake3/trunk@1593 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/q3_ui/ui_credits.c | 6 ++++++ 1 file changed, 6 insertions(+) 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; -- cgit v1.2.3