aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/IRenderer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Graphics.GAL/IRenderer.cs')
-rw-r--r--src/Ryujinx.Graphics.GAL/IRenderer.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Ryujinx.Graphics.GAL/IRenderer.cs b/src/Ryujinx.Graphics.GAL/IRenderer.cs
index d36dd26b..b668d56e 100644
--- a/src/Ryujinx.Graphics.GAL/IRenderer.cs
+++ b/src/Ryujinx.Graphics.GAL/IRenderer.cs
@@ -1,5 +1,6 @@
using Ryujinx.Common.Configuration;
using System;
+using System.Threading;
namespace Ryujinx.Graphics.GAL
{
@@ -52,7 +53,7 @@ namespace Ryujinx.Graphics.GAL
void ResetCounter(CounterType type);
- void RunLoop(Action gpuLoop)
+ void RunLoop(ThreadStart gpuLoop)
{
gpuLoop();
}