LibGfx: Fix typo in Color constructor

This commit is contained in:
César Torres 2022-05-01 19:02:55 +02:00 committed by Andreas Kling
parent 8cbd25f553
commit 4b0b22d897
Notes: sideshowbarker 2024-07-19 17:05:42 +09:00

View file

@ -399,8 +399,8 @@ public:
}
private:
constexpr explicit Color(ARGB32 rgba)
: m_value(rgba)
constexpr explicit Color(ARGB32 argb)
: m_value(argb)
{
}