aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs')
-rw-r--r--src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs b/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs
index a647d37e..3c4d5414 100644
--- a/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs
+++ b/src/Ryujinx.Graphics.GAL/Multithreading/ThreadedWindow.cs
@@ -7,8 +7,8 @@ namespace Ryujinx.Graphics.GAL.Multithreading
{
public class ThreadedWindow : IWindow
{
- private ThreadedRenderer _renderer;
- private IRenderer _impl;
+ private readonly ThreadedRenderer _renderer;
+ private readonly IRenderer _impl;
public ThreadedWindow(ThreadedRenderer renderer, IRenderer impl)
{