summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-21 00:56:00 +0200
committerLioncash <mathew1800@gmail.com>2018-08-21 01:48:57 +0200
commitf5b132676fe0903f4fa75bcebe189895d58a3ce1 (patch)
treeb813b00579d54886962471feb873707290570334 /src/core
parentacc: Remove unused DEFAULT_USER_ID (diff)
downloadyuzu-f5b132676fe0903f4fa75bcebe189895d58a3ce1.tar
yuzu-f5b132676fe0903f4fa75bcebe189895d58a3ce1.tar.gz
yuzu-f5b132676fe0903f4fa75bcebe189895d58a3ce1.tar.bz2
yuzu-f5b132676fe0903f4fa75bcebe189895d58a3ce1.tar.lz
yuzu-f5b132676fe0903f4fa75bcebe189895d58a3ce1.tar.xz
yuzu-f5b132676fe0903f4fa75bcebe189895d58a3ce1.tar.zst
yuzu-f5b132676fe0903f4fa75bcebe189895d58a3ce1.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/acc/acc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp
index f2dd38a73..2ae6ff62f 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -30,7 +30,7 @@ static_assert(sizeof(UserData) == 0x80, "UserData structure has incorrect size")
class IProfile final : public ServiceFramework<IProfile> {
public:
explicit IProfile(UUID user_id, ProfileManager& profile_manager)
- : ServiceFramework("IProfile"), user_id(user_id), profile_manager(profile_manager) {
+ : ServiceFramework("IProfile"), profile_manager(profile_manager), user_id(user_id) {
static const FunctionInfo functions[] = {
{0, &IProfile::Get, "Get"},
{1, &IProfile::GetBase, "GetBase"},