Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-11-09 20:15:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-09 20:15:00 +0400
commitd25b13d13f22581b7ed107f0774d1bd8c510add4 (patch)
treee9ceca49f84a8f1091e7b8491e27243411d65ab7 /source/gameengine/Rasterizer/RAS_TexVert.cpp
parentb67a297d33dc97708940b17ca50401d9277f8bd5 (diff)
code cleanup: double promotion warnings, also allow cmake to build SDL without audaspace.
Diffstat (limited to 'source/gameengine/Rasterizer/RAS_TexVert.cpp')
-rw-r--r--source/gameengine/Rasterizer/RAS_TexVert.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/gameengine/Rasterizer/RAS_TexVert.cpp b/source/gameengine/Rasterizer/RAS_TexVert.cpp
index b60fae73e2a..3b4f4cae30e 100644
--- a/source/gameengine/Rasterizer/RAS_TexVert.cpp
+++ b/source/gameengine/Rasterizer/RAS_TexVert.cpp
@@ -63,10 +63,10 @@ const MT_Point3& RAS_TexVert::xyz()
void RAS_TexVert::SetRGBA(const MT_Vector4& rgba)
{
unsigned char *colp = (unsigned char*) &m_rgba;
- colp[0] = (unsigned char) (rgba[0]*255.0f);
- colp[1] = (unsigned char) (rgba[1]*255.0f);
- colp[2] = (unsigned char) (rgba[2]*255.0f);
- colp[3] = (unsigned char) (rgba[3]*255.0f);
+ colp[0] = (unsigned char) (rgba[0] * 255.0);
+ colp[1] = (unsigned char) (rgba[1] * 255.0);
+ colp[2] = (unsigned char) (rgba[2] * 255.0);
+ colp[3] = (unsigned char) (rgba[3] * 255.0);
}