diff options
| author | 2020-04-29 21:09:53 +1000 | |
|---|---|---|
| committer | 2020-04-29 21:09:53 +1000 | |
| commit | 1417849a2b3689b46a8969f0ba2a0382ddefb8d1 (patch) | |
| tree | 8a3d92e8e1d34ff1ab68dc772c9dff6061e31bf8 /src/common/uuid.h | |
| parent | Merge pull request #3771 from benru/dump-romfs-with-updates (diff) | |
| download | yuzu-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.h | 5 |
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 | }; |