Commit 21bd722c authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

ddraw: Set the render target to the wined3d frontbuffer on D3D device cleanup.

We don't need any specific render target here, since without a D3D device we can't do any rendering anyway. We just want to avoid pointing to something that was free'd.
parent f69968bb
......@@ -304,7 +304,7 @@ IDirect3DDeviceImpl_7_Release(IDirect3DDevice7 *iface)
/* Set the device up to render to the front buffer since the back
* buffer will vanish soon. */
wined3d_device_set_render_target(This->wined3d_device, 0,
This->ddraw->d3d_target->wined3d_surface, TRUE);
This->ddraw->wined3d_frontbuffer, TRUE);
/* Release the WineD3DDevice. This won't destroy it. */
if (!wined3d_device_decref(This->wined3d_device))
......
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