Sebastian Lackner : wined3d: Fix transposed lines in WARN message.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Feb 29 10:59:12 CST 2016


Module: wine
Branch: master
Commit: 85f088f252997e3f593a710ba3a0220ec8d322f1
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=85f088f252997e3f593a710ba3a0220ec8d322f1

Author: Sebastian Lackner <sebastian at fds-team.de>
Date:   Fri Feb 26 07:59:52 2016 +0100

wined3d: Fix transposed lines in WARN message.

Signed-off-by: Sebastian Lackner <sebastian at fds-team.de>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/wined3d/context.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/wined3d/context.c b/dlls/wined3d/context.c
index b7b8648..d0deff9 100644
--- a/dlls/wined3d/context.c
+++ b/dlls/wined3d/context.c
@@ -486,9 +486,9 @@ static struct fbo_entry *context_find_fbo_entry(struct wined3d_context *context,
                 != render_targets[0]->resource.multisample_quality)
         {
             WARN("Color multisample type %u and quality %u, depth stencil has %u and %u, disabling ds buffer.\n",
-                    render_targets[0]->resource.multisample_quality,
                     render_targets[0]->resource.multisample_type,
-                    depth_stencil->resource.multisample_quality, depth_stencil->resource.multisample_type);
+                    render_targets[0]->resource.multisample_quality,
+                    depth_stencil->resource.multisample_type, depth_stencil->resource.multisample_quality);
             depth_stencil = NULL;
         }
         else




More information about the wine-cvs mailing list