From 3f0f1bf338895b62b2238306941218b9a6424d45 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Mon, 14 Apr 2025 09:13:36 -0600 Subject: [PATCH] Fix CColor::toRGBA --- include/zeus/CColor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/zeus/CColor.hpp b/include/zeus/CColor.hpp index c25cd0b..0481c50 100644 --- a/include/zeus/CColor.hpp +++ b/include/zeus/CColor.hpp @@ -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 {