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

wined3d: Correct the argument order of a FIXME in wined3d_texture_vk_download_data().

parent c47b28f5
......@@ -4771,8 +4771,8 @@ static void wined3d_texture_vk_download_data(struct wined3d_context *context,
if (dst_format->id != src_texture->resource.format->id)
{
FIXME("Unhandled format conversion (%s -> %s).\n",
debug_d3dformat(dst_format->id),
debug_d3dformat(src_texture->resource.format->id));
debug_d3dformat(src_texture->resource.format->id),
debug_d3dformat(dst_format->id));
return;
}
......
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