From c6fa95d2621833c71f7f9deb673c31ab81bd7e2a Mon Sep 17 00:00:00 2001 From: hikerstk Date: Thu, 17 Oct 2013 05:57:32 +0000 Subject: [PATCH] Fixed compiler warning. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14273 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/graphics/skid_marks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/skid_marks.cpp b/src/graphics/skid_marks.cpp index f141c8550..99f62fe27 100644 --- a/src/graphics/skid_marks.cpp +++ b/src/graphics/skid_marks.cpp @@ -269,7 +269,7 @@ void SkidMarks::SkidMarkQuads::add(const Vec3 &left, video::S3DVertex v; v.Color = m_start_color; - v.Color.setAlpha(0.0f); // initially create all vertices at alpha=0... + v.Color.setAlpha(0); // initially create all vertices at alpha=0... // then when adding a new set of vertices, make the previous 2 opaque. // this ensures that the last two vertices are always at alpha=0,