瀏覽代碼

Assign _backgroundContext before starting its worker thread. (#2299)

Fixes a random crash when starting an embedded game.
riperiperi 5 年之前
父節點
當前提交
c316c059ef
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Ryujinx.Graphics.OpenGL/BackgroundContextWorker.cs

+ 1 - 1
Ryujinx.Graphics.OpenGL/BackgroundContextWorker.cs

@@ -19,6 +19,7 @@ namespace Ryujinx.Graphics.OpenGL
 
         public BackgroundContextWorker(IOpenGLContext backgroundContext)
         {
+            _backgroundContext = backgroundContext;
             _running = true;
 
             _signal = new AutoResetEvent(false);
@@ -27,7 +28,6 @@ namespace Ryujinx.Graphics.OpenGL
 
             _thread = new Thread(Run);
             _thread.Start();
-            _backgroundContext = backgroundContext;
         }
 
         private void Run()