Commit a6e0c9cb authored by Alexandre Julliard's avatar Alexandre Julliard

d3d9: Make Direct3DCreate9 fail if we can't initialize wined3d.

parent 360d87f4
......@@ -53,6 +53,11 @@ IDirect3D9* WINAPI Direct3DCreate9(UINT SDKVersion) {
TRACE("SDKVersion = %x, Created Direct3D object @ %p, WineObj @ %p\n", SDKVersion, object, object->WineD3D);
if (!object->WineD3D)
{
HeapFree( GetProcessHeap(), 0, object );
object = NULL;
}
return (IDirect3D9*) object;
}
......
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