You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
569 B
20 lines
569 B
// 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
|