diff options
| author | 2021-07-26 23:54:59 -0400 | |
|---|---|---|
| committer | 2021-07-26 23:54:59 -0400 | |
| commit | b9b48aee7da6fed205a009a1f9fc06c20fb2f7f2 (patch) | |
| tree | f0b28bf196bad413b09edea71c8e90fe020dcd68 /src/common/uuid.cpp | |
| parent | Merge pull request #6575 from FernandoS27/new_settings (diff) | |
| download | yuzu-b9b48aee7da6fed205a009a1f9fc06c20fb2f7f2.tar.gz yuzu-b9b48aee7da6fed205a009a1f9fc06c20fb2f7f2.tar.xz yuzu-b9b48aee7da6fed205a009a1f9fc06c20fb2f7f2.zip | |
common: uuid: Return a lower-case hex string in Format
Diffstat (limited to 'src/common/uuid.cpp')
| -rw-r--r-- | src/common/uuid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/uuid.cpp b/src/common/uuid.cpp index 26db03fba..18303a1e3 100644 --- a/src/common/uuid.cpp +++ b/src/common/uuid.cpp | |||
| @@ -18,7 +18,7 @@ UUID UUID::Generate() { | |||
| 18 | } | 18 | } |
| 19 | 19 | ||
| 20 | std::string UUID::Format() const { | 20 | std::string UUID::Format() const { |
| 21 | return fmt::format("0x{:016X}{:016X}", uuid[1], uuid[0]); | 21 | return fmt::format("{:016x}{:016x}", uuid[1], uuid[0]); |
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | std::string UUID::FormatSwitch() const { | 24 | std::string UUID::FormatSwitch() const { |