diff --git a/src/core/hle/service/nfc/nfc_device.cpp b/src/core/hle/service/nfc/nfc_device.cpp index e9ef3cb77..58fd6fc8e 100644 --- a/src/core/hle/service/nfc/nfc_device.cpp +++ b/src/core/hle/service/nfc/nfc_device.cpp @@ -218,7 +218,10 @@ ResultCode NfcDevice::StartDetection(TagProtocol allowed_protocol) { return ResultInvalidOperation; } - // TODO: Set console in search mode here + // Ensure external device is active + if (communication_state == CommunicationState::Idle) { + StartCommunication(); + } device_state = DeviceState::SearchingForTag; allowed_protocols = allowed_protocol;