mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 13:25:45 +00:00
common: uuid: Return a lower-case hex string in Format
This commit is contained in:
parent
4827595bb1
commit
881199e524
3 changed files with 15 additions and 15 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue