Added -Wnon-virtual-dtor and -Wcast-qual warning flags
[supertux.git] / src / video / color.hpp
index 6900d7c..9155157 100644 (file)
@@ -70,7 +70,7 @@ public:
 
   float greyscale() const
   {
-    return red * 0.30 + green * 0.59 + blue * 0.11;
+    return red * 0.30f + green * 0.59f + blue * 0.11f;
   }
 
   bool operator < (const Color& other) const