diff options
| author | 2022-12-23 08:32:02 -0600 | |
|---|---|---|
| committer | 2023-01-19 18:05:22 -0600 | |
| commit | e1a3bda4d9881cb99c36b64733b814a3bb437f13 (patch) | |
| tree | a9c0d864b023a810f48c129bb8bd6e84afb2ed2b /src/input_common/helpers/joycon_protocol/nfc.h | |
| parent | core: hid: Fix input regressions (diff) | |
| download | yuzu-e1a3bda4d9881cb99c36b64733b814a3bb437f13.tar.gz yuzu-e1a3bda4d9881cb99c36b64733b814a3bb437f13.tar.xz yuzu-e1a3bda4d9881cb99c36b64733b814a3bb437f13.zip | |
Address review comments
Diffstat (limited to 'src/input_common/helpers/joycon_protocol/nfc.h')
| -rw-r--r-- | src/input_common/helpers/joycon_protocol/nfc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/helpers/joycon_protocol/nfc.h b/src/input_common/helpers/joycon_protocol/nfc.h index 0ede03d50..5cb0e5a65 100644 --- a/src/input_common/helpers/joycon_protocol/nfc.h +++ b/src/input_common/helpers/joycon_protocol/nfc.h | |||
| @@ -17,7 +17,7 @@ namespace InputCommon::Joycon { | |||
| 17 | 17 | ||
| 18 | class NfcProtocol final : private JoyconCommonProtocol { | 18 | class NfcProtocol final : private JoyconCommonProtocol { |
| 19 | public: | 19 | public: |
| 20 | NfcProtocol(std::shared_ptr<JoyconHandle> handle); | 20 | explicit NfcProtocol(std::shared_ptr<JoyconHandle> handle); |
| 21 | 21 | ||
| 22 | DriverResult EnableNfc(); | 22 | DriverResult EnableNfc(); |
| 23 | 23 | ||
| @@ -29,7 +29,7 @@ public: | |||
| 29 | 29 | ||
| 30 | bool HasAmiibo(); | 30 | bool HasAmiibo(); |
| 31 | 31 | ||
| 32 | bool IsEnabled(); | 32 | bool IsEnabled() const; |
| 33 | 33 | ||
| 34 | private: | 34 | private: |
| 35 | struct TagFoundData { | 35 | struct TagFoundData { |