mscoree: Use builtin XNA implementation by default.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=32877
Signed-off-by: Esme Povirk <esme@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Esme Povirk 2020-08-11 22:15:46 -05:00 committed by Alexandre Julliard
parent 26c078a2a6
commit f87171c601

View file

@ -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;
}