dinput: Fix type of loop variable in alloc_device().
This commit is contained in:
parent
e403292e5a
commit
79ccb7889c
|
@ -173,7 +173,7 @@ static SysMouseImpl *alloc_device(REFGUID rguid, const void *mvt, IDirectInputIm
|
|||
{
|
||||
SysMouseImpl* newDevice;
|
||||
LPDIDATAFORMAT df = NULL;
|
||||
int i;
|
||||
unsigned i;
|
||||
|
||||
newDevice = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(SysMouseImpl));
|
||||
if (!newDevice) return NULL;
|
||||
|
|
Loading…
Reference in New Issue