This commit is contained in:
2022-04-22 20:27:27 +02:00
committed by GitHub
parent a75f37c2d4
commit b71b359502

View File

@ -279,7 +279,7 @@ u32 RenderD7::Color::Hex(const std::string color, u8 a)
return RGBA8(r, g, b, a); return RGBA8(r, g, b, a);
} }
std::string RenderD7::RGB2Hex(int r, int g, int b) std::string RenderD7::Color::RGB2Hex(int r, int g, int b)
{ {
std::stringstream ss; std::stringstream ss;
ss << "#"; ss << "#";