Commit 8a2b435d authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Enable multisampling by default.

parent 641f52ef
......@@ -84,7 +84,7 @@ struct wined3d_settings wined3d_settings =
PCI_DEVICE_NONE,/* PCI Device ID */
0, /* The default of memory is set in init_driver_info */
NULL, /* No wine logo by default */
FALSE, /* Multisampling disabled by default. */
TRUE, /* Multisampling enabled by default. */
FALSE, /* No strict draw ordering. */
FALSE, /* Try to render onscreen by default. */
};
......@@ -329,10 +329,10 @@ static BOOL wined3d_dll_init(HINSTANCE hInstDLL)
}
if ( !get_config_key( hkey, appkey, "Multisampling", buffer, size) )
{
if (!strcmp(buffer,"enabled"))
if (!strcmp(buffer, "disabled"))
{
TRACE("Allow multisampling\n");
wined3d_settings.allow_multisampling = TRUE;
TRACE("Multisampling disabled.\n");
wined3d_settings.allow_multisampling = FALSE;
}
}
if (!get_config_key(hkey, appkey, "StrictDrawOrdering", buffer, size)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment