mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 12:01:43 +00:00
[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:
parent
c20f3fbebd
commit
3d1a0bf374
3 changed files with 12 additions and 2 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -125,6 +125,9 @@ ClientBin/
|
||||||
packages/*
|
packages/*
|
||||||
*.config
|
*.config
|
||||||
|
|
||||||
|
# Include nuget.config
|
||||||
|
!nuget.config
|
||||||
|
|
||||||
# RIA/Silverlight projects
|
# RIA/Silverlight projects
|
||||||
Generated_Code/
|
Generated_Code/
|
||||||
|
|
||||||
|
|
|
@ -77,7 +77,7 @@ namespace Ryujinx.Headless.SDL2
|
||||||
_accountManager = new AccountManager(_libHacHorizonManager.RyujinxClient);
|
_accountManager = new AccountManager(_libHacHorizonManager.RyujinxClient);
|
||||||
_userChannelPersistence = new UserChannelPersistence();
|
_userChannelPersistence = new UserChannelPersistence();
|
||||||
|
|
||||||
if (OperatingSystem.IsMacOS())
|
if (OperatingSystem.IsMacOS() || OperatingSystem.IsLinux())
|
||||||
{
|
{
|
||||||
AutoResetEvent invoked = new AutoResetEvent(false);
|
AutoResetEvent invoked = new AutoResetEvent(false);
|
||||||
|
|
||||||
|
|
7
nuget.config
Normal file
7
nuget.config
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<clear />
|
||||||
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
Loading…
Reference in a new issue