summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-21 00:53:32 +0200
committerLioncash <mathew1800@gmail.com>2018-08-21 01:48:57 +0200
commit350f6e0aa4fa598b9449d53263de7262aacc4070 (patch)
tree8de90d90dbb84eaa4f7374406a815c382b8096a3 /src/core
parentprofile_manager: Remove unnecessary memcpy in GetProfileBaseAndData() (diff)
downloadyuzu-350f6e0aa4fa598b9449d53263de7262aacc4070.tar
yuzu-350f6e0aa4fa598b9449d53263de7262aacc4070.tar.gz
yuzu-350f6e0aa4fa598b9449d53263de7262aacc4070.tar.bz2
yuzu-350f6e0aa4fa598b9449d53263de7262aacc4070.tar.lz
yuzu-350f6e0aa4fa598b9449d53263de7262aacc4070.tar.xz
yuzu-350f6e0aa4fa598b9449d53263de7262aacc4070.tar.zst
yuzu-350f6e0aa4fa598b9449d53263de7262aacc4070.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/acc/profile_manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/profile_manager.h b/src/core/hle/service/acc/profile_manager.h
index cb06e6fa6..52967844d 100644
--- a/src/core/hle/service/acc/profile_manager.h
+++ b/src/core/hle/service/acc/profile_manager.h
@@ -111,7 +111,7 @@ private:
size_t user_count = 0;
boost::optional<size_t> AddToProfiles(const ProfileInfo& profile);
bool RemoveProfileAtIndex(size_t index);
- UUID last_opened_user{0, 0};
+ UUID last_opened_user{INVALID_UUID};
};
}; // namespace Service::Account