Alexandre Julliard : d3dx10: Fix a prototype mismatch.

Alexandre Julliard julliard at winehq.org
Wed Jan 26 15:57:30 CST 2022


Module: wine
Branch: master
Commit: c84ac0e416c95c174f96af9259d5f8e90548dd7e
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=c84ac0e416c95c174f96af9259d5f8e90548dd7e

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed Jan 26 11:19:57 2022 +0100

d3dx10: Fix a prototype mismatch.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/d3dx10_43/font.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/d3dx10_43/font.c b/dlls/d3dx10_43/font.c
index 1a95dbeca02..b59d2f9be4b 100644
--- a/dlls/d3dx10_43/font.c
+++ b/dlls/d3dx10_43/font.c
@@ -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),




More information about the wine-cvs mailing list