diff options
| author | Viktor Szépe <viktor@szepe.net> | 2024-01-08 20:31:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-08 13:31:48 -0600 |
| commit | f12446167491b3e691f6a93a01cad3bd9e54d105 (patch) | |
| tree | 8992865b548e08317504d653880c3ee4aacb6ad4 /src/core/hle/service/nfc/common/device.cpp | |
| parent | 82b58668edcb078896a1184d158a08c58f841dd5 (diff) | |
Fix typos in src/core (#12625)
* Fix typos in src/core
* Fix typo correction
* Fix indentation of MemoryStateNames
* Fix indent
Diffstat (limited to 'src/core/hle/service/nfc/common/device.cpp')
| -rw-r--r-- | src/core/hle/service/nfc/common/device.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/nfc/common/device.cpp b/src/core/hle/service/nfc/common/device.cpp index b37fb6da3..31cc87acc 100644 --- a/src/core/hle/service/nfc/common/device.cpp +++ b/src/core/hle/service/nfc/common/device.cpp @@ -75,7 +75,7 @@ void NfcDevice::NpadUpdate(Core::HID::ControllerTriggerType type) { return; } - if (!is_initalized) { + if (!is_initialized) { return; } @@ -207,7 +207,7 @@ void NfcDevice::Initialize() { return; } - is_initalized = npad_device->AddNfcHandle(); + is_initialized = npad_device->AddNfcHandle(); } void NfcDevice::Finalize() { @@ -226,7 +226,7 @@ void NfcDevice::Finalize() { } device_state = DeviceState::Unavailable; - is_initalized = false; + is_initialized = false; } Result NfcDevice::StartDetection(NfcProtocol allowed_protocol) { |
