dinput: Assign to struct instead of using CopyMemory.

This commit is contained in:
Andrew Talbot 2008-03-28 22:52:23 +00:00 committed by Alexandre Julliard
parent 05935eb6b8
commit 05ea03c00b
1 changed files with 1 additions and 1 deletions

View File

@ -423,7 +423,7 @@ static HRESULT alloc_device(REFGUID rguid, const void *jvt, IDirectInputImpl *di
newDevice->base.lpVtbl = jvt;
newDevice->base.ref = 1;
newDevice->base.dinput = dinput;
CopyMemory(&newDevice->base.guid, rguid, sizeof(*rguid));
newDevice->base.guid = *rguid;
InitializeCriticalSection(&newDevice->base.crit);
newDevice->base.crit.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": JoystickImpl*->base.crit");