diff options
Diffstat (limited to 'src/core/hle/service')
| -rw-r--r-- | src/core/hle/service/nfp/nfp.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/nfp/nfp.cpp b/src/core/hle/service/nfp/nfp.cpp index fb89f6911..e0ed3f771 100644 --- a/src/core/hle/service/nfp/nfp.cpp +++ b/src/core/hle/service/nfp/nfp.cpp @@ -1069,7 +1069,9 @@ DeviceState Module::Interface::GetCurrentState() const {  }  Core::HID::NpadIdType Module::Interface::GetNpadId() const { -    return npad_id; +    // Return first connected npad id as a workaround for lack of a single nfc interface per +    // controller +    return system.HIDCore().GetFirstNpadId();  }  AmiiboName Module::Interface::GetAmiiboName(const AmiiboSettings& settings) const {  | 
