2022-04-23 10:59:50 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2022-02-28 06:18:37 +01:00
|
|
|
|
|
|
|
#include "common/logging/log.h"
|
2022-03-17 08:01:03 +01:00
|
|
|
#include "core/frontend/applets/mii_edit.h"
|
2022-02-28 06:18:37 +01:00
|
|
|
|
|
|
|
namespace Core::Frontend {
|
|
|
|
|
2022-03-17 08:01:03 +01:00
|
|
|
MiiEditApplet::~MiiEditApplet() = default;
|
2022-02-28 06:18:37 +01:00
|
|
|
|
2023-03-25 18:29:08 +01:00
|
|
|
void DefaultMiiEditApplet::Close() const {}
|
|
|
|
|
2022-12-06 00:52:52 +01:00
|
|
|
void DefaultMiiEditApplet::ShowMiiEdit(const MiiEditCallback& callback) const {
|
2022-03-17 08:01:03 +01:00
|
|
|
LOG_WARNING(Service_AM, "(STUBBED) called");
|
|
|
|
|
2022-03-17 10:19:25 +01:00
|
|
|
callback();
|
2022-02-28 06:18:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Core::Frontend
|