Commit a43cb280 authored by Alexandre Julliard's avatar Alexandre Julliard

d3d8: Avoid a size_t printf format warning.

parent 613998d4
......@@ -276,7 +276,7 @@ size_t convert_to_wined3d_declaration(const DWORD *d3d8_elements, WINED3DVERTEXE
const DWORD *token = d3d8_elements;
WINED3DVERTEXELEMENT *element;
D3DVSD_TOKENTYPE token_type;
size_t element_count = 0;
unsigned int element_count = 0;
DWORD stream = 0;
int offset = 0;
......
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