mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-09-03 19:18:09 +00:00
Remove accidental use of standard format instead of libfmt format
This commit is contained in:
@@ -66,7 +66,7 @@ public:
|
|||||||
const std::string original = *string;
|
const std::string original = *string;
|
||||||
string->clear();
|
string->clear();
|
||||||
for (const auto c : original) {
|
for (const auto c : original) {
|
||||||
string->append(std::format("{:x}", unsigned(c)));
|
string->append(fmt::format("{:x}", unsigned(c)));
|
||||||
}
|
}
|
||||||
string->pop_back();
|
string->pop_back();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user