aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/acc/acc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-12-14 01:01:48 -0500
committerbunnei <bunneidev@gmail.com>2020-01-04 13:29:55 -0500
commit5135b74179e99507cc5eee374e76c3f0ac3ee717 (patch)
tree77779e89d0bc5977ca6528e20847525b14caf88d /src/core/hle/service/acc/acc.cpp
parent624a0f7f3f4100fc56e3d70603a30384a21e7dc6 (diff)
core: Initialize several structs that make use of Common::UUID.
Diffstat (limited to 'src/core/hle/service/acc/acc.cpp')
-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 7e3e311fb..cfac8ca9a 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -211,7 +211,7 @@ protected:
}
ProfileManager& profile_manager;
- Common::UUID user_id; ///< The user id this profile refers to.
+ Common::UUID user_id{Common::INVALID_UUID}; ///< The user id this profile refers to.
};
class IProfile final : public IProfileCommon {