Commit a02a4614 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

wined3d: Use the correct device context ops in wined3d_device_context_issue_query().

parent 44cb53bb
......@@ -5387,7 +5387,7 @@ void CDECL wined3d_device_context_issue_query(struct wined3d_device_context *con
{
TRACE("context %p, query %p, flags %#x.\n", context, query, flags);
query->device->cs->c.ops->issue_query(context, query, flags);
context->ops->issue_query(context, query, flags);
}
struct wined3d_rendertarget_view * CDECL wined3d_device_context_get_rendertarget_view(
......
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