From fbae08672b060b7ea3550cca9b87e37c08239d0e Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Thu, 29 Oct 2009 18:56:20 +0100 Subject: [PATCH] wined3d: It's not an error to request multisampling. --- dlls/wined3d/context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wined3d/context.c b/dlls/wined3d/context.c index 8190a0aff5b..f15d9cbf15d 100644 --- a/dlls/wined3d/context.c +++ b/dlls/wined3d/context.c @@ -1258,7 +1258,7 @@ struct wined3d_context *context_create(IWineD3DDeviceImpl *This, IWineD3DSurface ERR("The program is requesting multisampling without support!\n"); else { - ERR("Requesting MultiSampleType=%d\n", pPresentParms->MultiSampleType); + TRACE("Requesting multisample type %#x.\n", pPresentParms->MultiSampleType); numSamples = pPresentParms->MultiSampleType; } }