summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/cabinet.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-05-07 21:18:09 +0200
committerGitHub <noreply@github.com>2023-05-07 21:18:09 +0200
commite58090c9c731701662d0824c2fd081467f21f5c3 (patch)
treef35c9a080f3b5a9067381b615eca928e8825ee20 /src/core/frontend/applets/cabinet.h
parentMerge pull request #10192 from bunnei/update-dynarmic-2 (diff)
parentservice: nfc: Merge device interfaces and create the device manager (diff)
downloadyuzu-e58090c9c731701662d0824c2fd081467f21f5c3.tar
yuzu-e58090c9c731701662d0824c2fd081467f21f5c3.tar.gz
yuzu-e58090c9c731701662d0824c2fd081467f21f5c3.tar.bz2
yuzu-e58090c9c731701662d0824c2fd081467f21f5c3.tar.lz
yuzu-e58090c9c731701662d0824c2fd081467f21f5c3.tar.xz
yuzu-e58090c9c731701662d0824c2fd081467f21f5c3.tar.zst
yuzu-e58090c9c731701662d0824c2fd081467f21f5c3.zip
Diffstat (limited to '')
-rw-r--r--src/core/frontend/applets/cabinet.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/frontend/applets/cabinet.h b/src/core/frontend/applets/cabinet.h
index 74dc5a4f6..af3fc6c3d 100644
--- a/src/core/frontend/applets/cabinet.h
+++ b/src/core/frontend/applets/cabinet.h
@@ -7,9 +7,9 @@
#include "core/frontend/applets/applet.h"
#include "core/hle/service/nfp/nfp_types.h"
-namespace Service::NFP {
-class NfpDevice;
-} // namespace Service::NFP
+namespace Service::NFC {
+class NfcDevice;
+} // namespace Service::NFC
namespace Core::Frontend {
@@ -26,14 +26,14 @@ public:
virtual ~CabinetApplet();
virtual void ShowCabinetApplet(const CabinetCallback& callback,
const CabinetParameters& parameters,
- std::shared_ptr<Service::NFP::NfpDevice> nfp_device) const = 0;
+ std::shared_ptr<Service::NFC::NfcDevice> nfp_device) const = 0;
};
class DefaultCabinetApplet final : public CabinetApplet {
public:
void Close() const override;
void ShowCabinetApplet(const CabinetCallback& callback, const CabinetParameters& parameters,
- std::shared_ptr<Service::NFP::NfpDevice> nfp_device) const override;
+ std::shared_ptr<Service::NFC::NfcDevice> nfp_device) const override;
};
} // namespace Core::Frontend