d3d: Fix partially applied patch: Remove AddRef from GetDirect3D.

This commit is contained in:
Markus Amsler 2006-11-22 13:30:09 +01:00 committed by Alexandre Julliard
parent 53620bc77b
commit 3fd8fe089c
1 changed files with 0 additions and 1 deletions

View File

@ -2296,7 +2296,6 @@ static HRESULT WINAPI IWineD3DDeviceImpl_GetDirect3D(IWineD3DDevice *iface, IWin
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
*ppD3D= This->wineD3D;
TRACE("(%p) : wineD3D returning %p\n", This, *ppD3D);
IWineD3D_AddRef(*ppD3D);
return WINED3D_OK;
}