Browse Source

Removed const from ProfileBase Invalidate

pull/15/merge
David Marcec 7 years ago
parent
commit
d0b2950434
  1. 2
      src/core/hle/service/acc/profile_manager.h

2
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);

Loading…
Cancel
Save