aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/core/math/color.h
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDLL/core/math/color.h')
-rw-r--r--NorthstarDLL/core/math/color.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/NorthstarDLL/core/math/color.h b/NorthstarDLL/core/math/color.h
index 76cf8a47..013c4e4c 100644
--- a/NorthstarDLL/core/math/color.h
+++ b/NorthstarDLL/core/math/color.h
@@ -57,7 +57,7 @@ struct SourceColor
//-----------------------------------------------------------------------------
class Color
{
- public:
+public:
Color(int r, int g, int b, int a = 255)
{
_color[0] = (unsigned char)r;
@@ -169,7 +169,7 @@ class Color
return SourceColor(_color[0], _color[1], _color[2], _color[3]);
}
- private:
+private:
unsigned char _color[4];
};