aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/OpenGL/OGLCachedResource.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Gal/OpenGL/OGLCachedResource.cs')
-rw-r--r--Ryujinx.Graphics/Gal/OpenGL/OGLCachedResource.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.Graphics/Gal/OpenGL/OGLCachedResource.cs b/Ryujinx.Graphics/Gal/OpenGL/OGLCachedResource.cs
index 01ebf982..839915ea 100644
--- a/Ryujinx.Graphics/Gal/OpenGL/OGLCachedResource.cs
+++ b/Ryujinx.Graphics/Gal/OpenGL/OGLCachedResource.cs
@@ -22,9 +22,9 @@ namespace Ryujinx.Graphics.Gal.OpenGL
public CacheBucket(T Value, long DataSize, LinkedListNode<long> Node)
{
- this.Value = Value;
- this.DataSize = DataSize;
- this.Node = Node;
+ this.Value = Value;
+ this.DataSize = DataSize;
+ this.Node = Node;
Timestamp = Environment.TickCount;
}