Update AutoDeleteCache.cs

This commit is contained in:
MaxLastBreath 2024-09-12 11:37:23 +03:00 committed by GitHub
commit 099cc21a81
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,9 +78,9 @@ namespace Ryujinx.Graphics.Gpu.Image
/// <summary> /// <summary>
/// Creates a new instance of the automatic deletion cache. /// Creates a new instance of the automatic deletion cache.
/// </summary> /// </summary>
public AutoDeleteCache(GpuContext _Context) public AutoDeleteCache(GpuContext context)
{ {
_context = _Context; _context = context;
_textures = new LinkedList<Texture>(); _textures = new LinkedList<Texture>();