diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-09-01 03:58:40 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-01 16:58:40 +1000 |
| commit | bdfbcf4017c97d16531bfde70613a0aaa3759f52 (patch) | |
| tree | d4e71b6a66f814ab0da68979460c65501b758009 /Ryujinx.Graphics.Gpu/Image/Texture.cs | |
| parent | bc19114bb5a14f4563aa4bee68bda97234a7bcb0 (diff) | |
Fix regression on texture compatibility match checks (#1521)
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/Texture.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Image/Texture.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/Texture.cs b/Ryujinx.Graphics.Gpu/Image/Texture.cs index 2a61b441..50b184d5 100644 --- a/Ryujinx.Graphics.Gpu/Image/Texture.cs +++ b/Ryujinx.Graphics.Gpu/Image/Texture.cs @@ -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; } |
