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>
This commit is contained in:
parent
9612033285
commit
85f088f252
|
@ -486,9 +486,9 @@ static struct fbo_entry *context_find_fbo_entry(struct wined3d_context *context,
|
||||||
!= render_targets[0]->resource.multisample_quality)
|
!= render_targets[0]->resource.multisample_quality)
|
||||||
{
|
{
|
||||||
WARN("Color multisample type %u and quality %u, depth stencil has %u and %u, disabling ds buffer.\n",
|
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,
|
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;
|
depth_stencil = NULL;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue