mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-31 10:09:42 -06:00
Fix wrong maximum id on sampler pool in some cases
This commit is contained in:
@ -76,7 +76,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
||||
|
||||
if (_samplerPool != null)
|
||||
{
|
||||
if (_samplerPool.Address == address)
|
||||
if (_samplerPool.Address == address && _samplerPool.MaximumId >= maximumId)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user