Commit c84ac0e4 authored by Alexandre Julliard's avatar Alexandre Julliard

d3dx10: Fix a prototype mismatch.

parent 6d3cbb5c
......@@ -310,7 +310,7 @@ static INT WINAPI d3dx_font_DrawTextA(ID3DX10Font *iface, ID3DX10Sprite *sprite,
}
static INT WINAPI d3dx_font_DrawTextW(ID3DX10Font *iface, ID3DX10Sprite *sprite,
const WCHAR *string, INT count, RECT *rect, DWORD format, D3DXCOLOR color)
const WCHAR *string, INT count, RECT *rect, UINT format, D3DXCOLOR color)
{
FIXME("iface %p, sprite %p, string %s, count %d, rect %s, format %#x, color {%.8e,%.8e,%.8e,%.8e} stub!\n",
iface, sprite, debugstr_wn(string, count), count, wine_dbgstr_rect(rect),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment