Module: wine Branch: master Commit: 85f088f252997e3f593a710ba3a0220ec8d322f1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=85f088f252997e3f593a710ba3...
Author: Sebastian Lackner sebastian@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@fds-team.de Signed-off-by: Henri Verbeet hverbeet@codeweavers.com Signed-off-by: Alexandre Julliard julliard@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