HLE: LDN: Reduce NAT timeout from 5 seconds to 2.5

This commit is contained in:
Evan Husted
2025-02-16 18:04:55 -06:00
committed by KeatonTheBot
parent e3258ab026
commit 5e77ca25c8
@@ -111,7 +111,7 @@ namespace Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator.LdnRyu.Proxy
public async Task<ushort> NatPunch()
{
NatDiscoverer discoverer = new NatDiscoverer();
CancellationTokenSource cts = new CancellationTokenSource(5000);
CancellationTokenSource cts = new CancellationTokenSource(2500);
NatDevice device;