From d2b1210376f6cc52fe031ac41d3bf54720ebd356 Mon Sep 17 00:00:00 2001 From: PilzAdam Date: Thu, 3 Jan 2013 16:15:46 +0100 Subject: [PATCH] Adjust the maximum alpha of the red hurt screen --- src/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.cpp b/src/game.cpp index 5a278a52e..42863ff37 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -3062,7 +3062,7 @@ void the_game( */ if(damage_flash > 0.0) { - video::SColor color(std::min(damage_flash, 220.0f),180,0,0); + video::SColor color(std::min(damage_flash, 180.0f),180,0,0); driver->draw2DRectangle(color, core::rect(0,0,screensize.X,screensize.Y), NULL);