Tabs -> spaces

This commit is contained in:
Sfan5
2014-04-03 20:38:09 +02:00
parent 84d46ab8eb
commit 2a4681d5c8
2 changed files with 23 additions and 23 deletions

View File

@ -31,7 +31,7 @@ struct Color {
};
struct ColorEntry {
ColorEntry(): r(0), g(0), b(0), a(0), t(0) {};
ColorEntry(): r(0), g(0), b(0), a(0), t(0) {};
ColorEntry(uint8_t r, uint8_t g, uint8_t b, uint8_t a, uint8_t t): r(r), g(g), b(b), a(a), t(t) {};
inline Color to_color() const { return Color(r, g, b, a); }
uint8_t r;