nfp: Increase Amiibo scanning delay (#2256)

This commit is contained in:
Ac_K 2021-04-30 19:32:58 +02:00 committed by GitHub
parent 20d2347971
commit 8a81be9eca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -159,7 +159,7 @@ namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp
if (context.Device.System.NfpDevices[i].State == NfpDeviceState.TagFound)
{
context.Device.System.NfpDevices[i].SignalActivate();
Thread.Sleep(50); // NOTE: Simulate amiibo scanning delay.
Thread.Sleep(125); // NOTE: Simulate amiibo scanning delay.
context.Device.System.NfpDevices[i].SignalDeactivate();
break;