Increase NAT discovery timeout to 5000ms #589

Merged
kruumy merged 1 commits from master into master 2025-01-27 01:40:10 +00:00
Showing only changes of commit ec41b58cf1 - Show all commits

View File

@ -113,7 +113,7 @@ namespace Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator.LdnRyu.Proxy
public async Task<ushort> NatPunch()
{
NatDiscoverer discoverer = new();
CancellationTokenSource cts = new(1000);
CancellationTokenSource cts = new(5000);
NatDevice device;