mirror of https://github.com/yuzu-mirror/yuzu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
724 B
C++
21 lines
724 B
C++
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "common/settings.h"
|
|
#include "core/frontend/applets/profile_select.h"
|
|
#include "core/hle/service/acc/profile_manager.h"
|
|
|
|
namespace Core::Frontend {
|
|
|
|
ProfileSelectApplet::~ProfileSelectApplet() = default;
|
|
|
|
void DefaultProfileSelectApplet::Close() const {}
|
|
|
|
void DefaultProfileSelectApplet::SelectProfile(SelectProfileCallback callback) const {
|
|
Service::Account::ProfileManager manager;
|
|
callback(manager.GetUser(Settings::values.current_user.GetValue()).value_or(Common::UUID{}));
|
|
LOG_INFO(Service_ACC, "called, selecting current user instead of prompting...");
|
|
}
|
|
|
|
} // namespace Core::Frontend
|