Threw in a hack to fix rendering of credits menu in widescreen.

Fixes Bugzilla #2744.
This commit is contained in:
Ryan C. Gordon 2009-09-14 21:08:08 +00:00
parent 4e447c9a77
commit 8bb2f9a5f5

View file

@ -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;