summaryrefslogtreecommitdiff
path: root/src/common/uuid.h
diff options
context:
space:
mode:
authorGravatar David Marcec2020-04-29 21:09:53 +1000
committerGravatar David Marcec2020-04-29 21:09:53 +1000
commit1417849a2b3689b46a8969f0ba2a0382ddefb8d1 (patch)
tree8a3d92e8e1d34ff1ab68dc772c9dff6061e31bf8 /src/common/uuid.h
parentMerge pull request #3771 from benru/dump-romfs-with-updates (diff)
downloadyuzu-1417849a2b3689b46a8969f0ba2a0382ddefb8d1.tar.gz
yuzu-1417849a2b3689b46a8969f0ba2a0382ddefb8d1.tar.xz
yuzu-1417849a2b3689b46a8969f0ba2a0382ddefb8d1.zip
acc: Return a unique value per account for GetAccountId
Diffstat (limited to 'src/common/uuid.h')
-rw-r--r--src/common/uuid.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/uuid.h b/src/common/uuid.h
index f6ad064fb..4d3af8cec 100644
--- a/src/common/uuid.h
+++ b/src/common/uuid.h
@@ -40,6 +40,11 @@ struct UUID {
40 uuid = INVALID_UUID; 40 uuid = INVALID_UUID;
41 } 41 }
42 42
43 // TODO(ogniK): Properly generate a Nintendo ID
44 constexpr u64 GetNintendoID() const {
45 return uuid[0];
46 }
47
43 std::string Format() const; 48 std::string Format() const;
44 std::string FormatSwitch() const; 49 std::string FormatSwitch() const;
45}; 50};