Fix regression on texture compatibility match checks (#1521)

This commit is contained in:
gdkchan
2020-09-01 16:58:40 +10:00
committed by GitHub
parent bc19114bb5
commit bdfbcf4017
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -676,7 +676,7 @@ namespace Ryujinx.Graphics.Gpu.Image
return false;
}
if (!TextureCompatibility.SizeMatches(Info, info))
if (!TextureCompatibility.SizeMatches(Info, info, (flags & TextureSearchFlags.Strict) == 0))
{
return false;
}