Commit 6e33aa22 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

wined3d: Reduce long integral type usage in wined3d_main.c.

parent 9c06b575
......@@ -204,7 +204,7 @@ static DWORD get_config_key(HKEY defkey, HKEY appkey, const char *env, const cha
return ERROR_FILE_NOT_FOUND;
}
static DWORD get_config_key_dword(HKEY defkey, HKEY appkey, const char *env, const char *name, DWORD *value)
static DWORD get_config_key_dword(HKEY defkey, HKEY appkey, const char *env, const char *name, unsigned int *value)
{
DWORD type, data, size;
const char *env_value;
......@@ -269,7 +269,7 @@ static BOOL wined3d_dll_init(HINSTANCE hInstDLL)
const char *env;
HKEY hkey = 0;
HKEY appkey = 0;
DWORD tmpvalue;
unsigned int tmpvalue;
WNDCLASSA wc;
wined3d_context_tls_idx = TlsAlloc();
......
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