diff options
Diffstat (limited to 'zencore/string.cpp')
| -rw-r--r-- | zencore/string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/string.cpp b/zencore/string.cpp index f116ac477..933d210e7 100644 --- a/zencore/string.cpp +++ b/zencore/string.cpp @@ -349,7 +349,7 @@ ParseHex(const std::string HexString, uint32_t& OutValue) static const char HexLUT[] = "0123456789abcdef"; void -FormatHex(uint32_t Value, char OutBlockHexString[9]) +ToHex(uint32_t Value, char OutBlockHexString[9]) { OutBlockHexString[0] = HexLUT[(Value >> 28) & 0xf]; OutBlockHexString[1] = HexLUT[(Value >> 24) & 0xf]; |