Update AutoDeleteCache.cs

This commit is contained in:
MaxLastBreath 2024-09-12 11:37:23 +03:00 committed by GitHub
parent 1e6f499995
commit 099cc21a81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

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