d3dx9: Use lowercase hexadecimal values.

This commit is contained in:
Rico Schüller 2013-01-10 22:23:31 +01:00 committed by Alexandre Julliard
parent b1126a8c30
commit c1d1d74614
1 changed files with 2 additions and 2 deletions

View File

@ -597,9 +597,9 @@ static inline struct ID3DXConstantTableImpl *impl_from_ID3DXConstantTable(ID3DXC
return CONTAINING_RECORD(iface, struct ID3DXConstantTableImpl, ID3DXConstantTable_iface);
}
static inline int is_vertex_shader(DWORD version)
static inline BOOL is_vertex_shader(DWORD version)
{
return (version & 0xFFFF0000) == 0xFFFE0000;
return (version & 0xffff0000) == 0xfffe0000;
}
static inline struct ctab_constant *constant_from_handle(D3DXHANDLE handle)