diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2023-04-19 19:01:23 -0600 |
---|---|---|
committer | german77 <juangerman-13@hotmail.com> | 2023-05-05 22:02:59 -0600 |
commit | 94151097b9abadf35c55ea06a31925c9848f4c62 (patch) | |
tree | 28a00c878f90492ffd2bb95521c2cc3990cc4323 /src/yuzu/main.h | |
parent | 5e16fe4579e10cf21af9fada603d8d585f683caf (diff) |
service: nfc: Merge device interfaces and create the device manager
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r-- | src/yuzu/main.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 8b5c1d747..ac90bd5ae 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -93,9 +93,9 @@ enum class SwkbdReplyType : u32; enum class WebExitReason : u32; } // namespace Service::AM::Applets -namespace Service::NFP { -class NfpDevice; -} // namespace Service::NFP +namespace Service::NFC { +class NfcDevice; +} // namespace Service::NFC namespace Ui { class MainWindow; @@ -188,7 +188,7 @@ public slots: void OnExit(); void OnSaveConfig(); void AmiiboSettingsShowDialog(const Core::Frontend::CabinetParameters& parameters, - std::shared_ptr<Service::NFP::NfpDevice> nfp_device); + std::shared_ptr<Service::NFC::NfcDevice> nfp_device); void AmiiboSettingsRequestExit(); void ControllerSelectorReconfigureControllers( const Core::Frontend::ControllerParameters& parameters); |