mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-27 17:07:10 +02:00
Fix regression on texture compatibility match checks (#1521)
This commit is contained in:
parent
dd4efdf860
commit
1a2a5fb62e
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue