mirror of
https://github.com/love2d/love.git
synced 2026-08-16 00:02:12 +02:00
Hopefully fixed compilation when VS2013 is used...
This commit is contained in:
@@ -134,6 +134,14 @@ public:
|
||||
{
|
||||
bool r, g, b, a;
|
||||
|
||||
ColorMask()
|
||||
: r(true), g(true), b(true), a(true)
|
||||
{}
|
||||
|
||||
ColorMask(bool _r, bool _g, bool _b, bool _a)
|
||||
: r(_r), g(_g), b(_b), a(_a)
|
||||
{}
|
||||
|
||||
bool operator == (const ColorMask &m) const
|
||||
{
|
||||
return r == m.r && g == m.g && b == m.b && a == m.a;
|
||||
|
||||
Reference in New Issue
Block a user