Commit f87171c6 authored by Esme Povirk's avatar Esme Povirk Committed by Alexandre Julliard

mscoree: Use builtin XNA implementation by default.

parent 26c078a2
......@@ -1502,6 +1502,10 @@ static DWORD get_basename_search_flags(const char *basename, MonoAssemblyName *a
return reg_entry.flags;
}
if (strcmp(basename, "Microsoft.Xna.Framework.*") == 0)
/* XNA redist is broken in Wine Mono, use FNA instead. */
return 0;
return ASSEMBLY_SEARCH_UNDEFINED;
}
......
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