Browse Source

Fixed CID 1197487

AlexVinS 9 years ago
parent
commit
b908c70468
1 changed files with 1 additions and 0 deletions
  1. 1 0
      client/windows/CCastleInterface.cpp

+ 1 - 0
client/windows/CCastleInterface.cpp

@@ -141,6 +141,7 @@ SDL_Color multiplyColors (const SDL_Color &b, const SDL_Color &a, double f)
 	ret.r = a.r*f + b.r*(1-f);
 	ret.g = a.g*f + b.g*(1-f);
 	ret.b = a.b*f + b.b*(1-f);
+	ret.a = a.a*f + b.b*(1-f);
 	return ret;
 }