Commit a389fe55 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: IWineD3DStateBlockImpl no longer implements IWineD3DBase.

parent 23f05028
......@@ -465,8 +465,8 @@ static HRESULT WINAPI IWineD3DStateBlockImpl_QueryInterface(IWineD3DStateBlock
IWineD3DStateBlockImpl *This = (IWineD3DStateBlockImpl *)iface;
TRACE("(%p)->(%s,%p)\n",This,debugstr_guid(riid),ppobj);
if (IsEqualGUID(riid, &IID_IUnknown)
|| IsEqualGUID(riid, &IID_IWineD3DBase)
|| IsEqualGUID(riid, &IID_IWineD3DStateBlock)){
|| IsEqualGUID(riid, &IID_IWineD3DStateBlock))
{
IUnknown_AddRef(iface);
*ppobj = This;
return S_OK;
......
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