Work around issue apparently caused by 5909 (#5926)

This commit is contained in:
gdkchan
2023-11-14 22:24:54 -03:00
committed by GitHub
parent 6bce46621c
commit 1329c47ea4
3 changed files with 14 additions and 9 deletions

View File

@ -1443,11 +1443,7 @@ namespace Ryujinx.Graphics.Gpu.Image
if (_modifiedStale || Group.HasCopyDependencies || Group.HasFlushBuffer)
{
_modifiedStale = false;
if (bound || ModifiedSinceLastFlush || Group.HasCopyDependencies || Group.HasFlushBuffer)
{
Group.SignalModifying(this, bound);
}
Group.SignalModifying(this, bound, bound || ModifiedSinceLastFlush || Group.HasCopyDependencies || Group.HasFlushBuffer);
}
_physicalMemory.TextureCache.Lift(this);