[Headless] Fix for not receiving any SDL events on Linux (#4182)

* headless: Fix SDL events not working

* Add nuget.config
This commit is contained in:
TSRBerry 2022-12-29 15:09:18 +01:00 committed by GitHub
parent c20f3fbebd
commit 3d1a0bf374
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 2 deletions

View file

@ -77,7 +77,7 @@ namespace Ryujinx.Headless.SDL2
_accountManager = new AccountManager(_libHacHorizonManager.RyujinxClient);
_userChannelPersistence = new UserChannelPersistence();
if (OperatingSystem.IsMacOS())
if (OperatingSystem.IsMacOS() || OperatingSystem.IsLinux())
{
AutoResetEvent invoked = new AutoResetEvent(false);
@ -663,4 +663,4 @@ namespace Ryujinx.Headless.SDL2
return true;
}
}
}
}