summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar David Marcec2018-08-12 00:41:17 +1000
committerGravatar David Marcec2018-08-12 00:41:17 +1000
commitd0b2950434b8da14f9903e918e568254c9b0b27d (patch)
tree80a6cf06f5e75be6bf330ecdb165e46a1ca75dbd
parentfixed invalid uuid bool operator (diff)
downloadyuzu-d0b2950434b8da14f9903e918e568254c9b0b27d.tar.gz
yuzu-d0b2950434b8da14f9903e918e568254c9b0b27d.tar.xz
yuzu-d0b2950434b8da14f9903e918e568254c9b0b27d.zip
Removed const from ProfileBase Invalidate
-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 bbb917cb5..1815d520d 100644
--- a/src/core/hle/service/acc/profile_manager.h
+++ b/src/core/hle/service/acc/profile_manager.h
@@ -65,7 +65,7 @@ struct ProfileBase {
65 u64_le timestamp; 65 u64_le timestamp;
66 std::array<u8, 0x20> username; 66 std::array<u8, 0x20> username;
67 67
68 const void Invalidate() { 68 void Invalidate() {
69 user_uuid.Invalidate(); 69 user_uuid.Invalidate();
70 timestamp = 0; 70 timestamp = 0;
71 username.fill(0); 71 username.fill(0);