[PATCH 5/5] wined3d: Correct the argument order of a FIXME in wined3d_texture_vk_download_data().

Henri Verbeet hverbeet at codeweavers.com
Thu Jan 21 03:55:53 CST 2021


Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
---
 dlls/wined3d/texture.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/wined3d/texture.c b/dlls/wined3d/texture.c
index 6f16868c5ad..5bb4de05d5c 100644
--- a/dlls/wined3d/texture.c
+++ b/dlls/wined3d/texture.c
@@ -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;
     }
 
-- 
2.20.1




More information about the wine-devel mailing list