summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-07-29 18:37:15 +0200
committerGitHub <noreply@github.com>2021-07-29 18:37:15 +0200
commit5acf020389bb7c53cb9c33f618893cc9d7cd720d (patch)
tree9dd1696c7403f990c7d689f8fb1c7c59f25f1eb0 /src/common
parentMerge pull request #6760 from ReinUsesLisp/fp16-collect (diff)
parentcommon: uuid: Return a lower-case hex string in Format (diff)
downloadyuzu-5acf020389bb7c53cb9c33f618893cc9d7cd720d.tar
yuzu-5acf020389bb7c53cb9c33f618893cc9d7cd720d.tar.gz
yuzu-5acf020389bb7c53cb9c33f618893cc9d7cd720d.tar.bz2
yuzu-5acf020389bb7c53cb9c33f618893cc9d7cd720d.tar.lz
yuzu-5acf020389bb7c53cb9c33f618893cc9d7cd720d.tar.xz
yuzu-5acf020389bb7c53cb9c33f618893cc9d7cd720d.tar.zst
yuzu-5acf020389bb7c53cb9c33f618893cc9d7cd720d.zip
Diffstat (limited to 'src/common')
-rw-r--r--src/common/uuid.cpp2
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() {
}
std::string UUID::Format() const {
- return fmt::format("0x{:016X}{:016X}", uuid[1], uuid[0]);
+ return fmt::format("{:016x}{:016x}", uuid[1], uuid[0]);
}
std::string UUID::FormatSwitch() const {