CColor: fix getAsHex

This commit is contained in:
Vaxry
2024-04-05 21:23:06 +01:00
parent 094bce8118
commit b5b1c0137d
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ class CColor {
float r = 0, g = 0, b = 0, a = 1.f;
uint64_t getAsHex();
uint32_t getAsHex();
CColor operator-(const CColor& c2) const {
return CColor(r - c2.r, g - c2.g, b - c2.b, a - c2.a);