diff options
| author | 2018-08-20 18:56:00 -0400 | |
|---|---|---|
| committer | 2018-08-20 19:48:57 -0400 | |
| commit | f5b132676fe0903f4fa75bcebe189895d58a3ce1 (patch) | |
| tree | b813b00579d54886962471feb873707290570334 /src | |
| parent | acc: Remove unused DEFAULT_USER_ID (diff) | |
| download | yuzu-f5b132676fe0903f4fa75bcebe189895d58a3ce1.tar.gz yuzu-f5b132676fe0903f4fa75bcebe189895d58a3ce1.tar.xz yuzu-f5b132676fe0903f4fa75bcebe189895d58a3ce1.zip | |
acc: Correct IProfile's constructor initializer list order
Arranges them in the order the members would be initialized
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/acc/acc.cpp | 2 |
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") | |||
| 30 | class IProfile final : public ServiceFramework<IProfile> { | 30 | class IProfile final : public ServiceFramework<IProfile> { |
| 31 | public: | 31 | public: |
| 32 | explicit IProfile(UUID user_id, ProfileManager& profile_manager) | 32 | explicit IProfile(UUID user_id, ProfileManager& profile_manager) |
| 33 | : ServiceFramework("IProfile"), user_id(user_id), profile_manager(profile_manager) { | 33 | : ServiceFramework("IProfile"), profile_manager(profile_manager), user_id(user_id) { |
| 34 | static const FunctionInfo functions[] = { | 34 | static const FunctionInfo functions[] = { |
| 35 | {0, &IProfile::Get, "Get"}, | 35 | {0, &IProfile::Get, "Get"}, |
| 36 | {1, &IProfile::GetBase, "GetBase"}, | 36 | {1, &IProfile::GetBase, "GetBase"}, |