(D3D11) font driver: fix text colors.

This commit is contained in:
aliaspider 2018-01-25 05:46:48 +01:00
parent 2a54cbca75
commit 580c0184c2

View File

@ -299,7 +299,7 @@ static void d3d11_font_render_msg(
g = FONT_COLOR_GET_GREEN(params->color);
b = FONT_COLOR_GET_BLUE(params->color);
alpha = FONT_COLOR_GET_ALPHA(params->color);
color = params->color;
color = DXGI_COLOR_RGBA(r, g, b, alpha);
}
else
{