From 3da85d8c5479e2d21476cc01bb628d6434d02749 Mon Sep 17 00:00:00 2001 From: Dan Engelbrecht Date: Wed, 23 Mar 2022 23:16:22 +0100 Subject: Rename FormatHex to ToHex --- zencore/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zencore/string.cpp') 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]; -- cgit v1.2.3