From 59c5962828b0aecba9c1423a9dd81850acfadcd3 Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Wed, 25 Mar 2009 10:12:27 +0100 Subject: [PATCH] wined3d: Make the texunit field in struct stb_const_desc unsigned. --- dlls/wined3d/wined3d_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wined3d/wined3d_private.h b/dlls/wined3d/wined3d_private.h index 2125366d469..c90a77dbd49 100644 --- a/dlls/wined3d/wined3d_private.h +++ b/dlls/wined3d/wined3d_private.h @@ -438,7 +438,7 @@ enum vertexprocessing_mode { #define WINED3D_CONST_NUM_UNUSED ~0U struct stb_const_desc { - char texunit; + unsigned char texunit; UINT const_num; };