MCPcopy Create free account
hub / github.com/OpenDungeons/OpenDungeons / intTo2Hex

Function intTo2Hex

source/utils/Helper.cpp:210–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208 }
209
210 std::string intTo2Hex(int i)
211 {
212 std::stringstream stream;
213 stream << std::setfill('0') << std::setw(2) << std::hex << i;
214 return stream.str();
215 }
216
217 std::string getCEGUIColorFromOgreColourValue(const Ogre::ColourValue& color)
218 {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected