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