diff --git a/stepmania/src/RageTypes.h b/stepmania/src/RageTypes.h index 6fe24bfd7a..7650aa804d 100644 --- a/stepmania/src/RageTypes.h +++ b/stepmania/src/RageTypes.h @@ -194,7 +194,7 @@ class RageVColor public: uint8_t b,g,r,a; // specific ordering required by Direct3D - RageVColor(): b(0), g(0), r(0), a(0) { } + RageVColor() { } RageVColor(const RageColor &rc) { *this = rc; } RageVColor &operator= (const RageColor &rc) { r = FTOC(rc.r); g = FTOC(rc.g); b = FTOC(rc.b); a = FTOC(rc.a);