Fix CColor::toRGBA

This commit is contained in:
Luke Street 2025-04-14 09:13:36 -06:00
parent d63744eb07
commit 3f0f1bf338

View File

@ -251,7 +251,7 @@ public:
ret.g = g() * 255;
ret.b = b() * 255;
ret.a = a() * 255;
return ret.rgba;
return COLOR(ret.rgba);
}
[[nodiscard]] unsigned short toRGB5A3() const {