31 Oct
2017
31 Oct
'17
1:31 a.m.
- FIXME("(%p): stub!\n", ret); + HRESULT res = direct3d8_create(ret);
- return E_NOTIMPL; + TRACE("(%p) -> (%x)\n", ret, res); + + return res;
}
That's an unusual way to arrange things. Why don't you return as "return direct3d8_create();" ?
I did this so I can trace the return value. Since it's a wrapper with nearly no own code I figured it makes sense. Is this unneeded? Because if so, I'll change that. Regards, Fabian Maurer