diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2018-08-11 16:41:17 +0200 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2018-08-11 16:41:17 +0200 |
commit | d0b2950434b8da14f9903e918e568254c9b0b27d (patch) | |
tree | 80a6cf06f5e75be6bf330ecdb165e46a1ca75dbd /src/core/hle | |
parent | fixed invalid uuid bool operator (diff) | |
download | yuzu-d0b2950434b8da14f9903e918e568254c9b0b27d.tar yuzu-d0b2950434b8da14f9903e918e568254c9b0b27d.tar.gz yuzu-d0b2950434b8da14f9903e918e568254c9b0b27d.tar.bz2 yuzu-d0b2950434b8da14f9903e918e568254c9b0b27d.tar.lz yuzu-d0b2950434b8da14f9903e918e568254c9b0b27d.tar.xz yuzu-d0b2950434b8da14f9903e918e568254c9b0b27d.tar.zst yuzu-d0b2950434b8da14f9903e918e568254c9b0b27d.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/acc/profile_manager.h | 2 |
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 { u64_le timestamp; std::array<u8, 0x20> username; - const void Invalidate() { + void Invalidate() { user_uuid.Invalidate(); timestamp = 0; username.fill(0); |