diff options
author | bunnei <bunneidev@gmail.com> | 2022-11-20 09:48:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-20 09:48:39 +0100 |
commit | 57a05b1653b316412492b7cf83738b702865b47e (patch) | |
tree | cb76a9aead5f545250301eb7928ecfb03e706931 /src/core/frontend/applets/cabinet.cpp | |
parent | Merge pull request #9249 from goldenx86/available-vram (diff) | |
parent | general: Address review comments (diff) | |
download | yuzu-57a05b1653b316412492b7cf83738b702865b47e.tar yuzu-57a05b1653b316412492b7cf83738b702865b47e.tar.gz yuzu-57a05b1653b316412492b7cf83738b702865b47e.tar.bz2 yuzu-57a05b1653b316412492b7cf83738b702865b47e.tar.lz yuzu-57a05b1653b316412492b7cf83738b702865b47e.tar.xz yuzu-57a05b1653b316412492b7cf83738b702865b47e.tar.zst yuzu-57a05b1653b316412492b7cf83738b702865b47e.zip |
Diffstat (limited to 'src/core/frontend/applets/cabinet.cpp')
-rw-r--r-- | src/core/frontend/applets/cabinet.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/core/frontend/applets/cabinet.cpp b/src/core/frontend/applets/cabinet.cpp new file mode 100644 index 000000000..26c7fefe3 --- /dev/null +++ b/src/core/frontend/applets/cabinet.cpp @@ -0,0 +1,20 @@ +// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "common/logging/log.h" +#include "core/frontend/applets/cabinet.h" + +#include <thread> + +namespace Core::Frontend { + +CabinetApplet::~CabinetApplet() = default; + +void DefaultCabinetApplet::ShowCabinetApplet( + const CabinetCallback& callback, const CabinetParameters& parameters, + std::shared_ptr<Service::NFP::NfpDevice> nfp_device) const { + LOG_WARNING(Service_AM, "(STUBBED) called"); + callback(false, {}); +} + +} // namespace Core::Frontend |