fix BLEND_ADD bug

This commit is contained in:
Chris Danford
2003-10-22 01:47:40 +00:00
parent 5dfbc32965
commit aa50c93791
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -974,7 +974,7 @@ void RageDisplay_OGL::SetBlendMode( BlendMode mode )
glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA );
break;
case BLEND_ADD:
glBlendFunc( GL_ONE, GL_ONE );
glBlendFunc( GL_SRC_ALPHA, GL_ONE );
break;
case BLEND_NO_EFFECT:
glBlendFunc( GL_ZERO, GL_ONE );