VideoCommon: fix dstAlpha

This commit is contained in:
degasus 2013-10-09 16:33:45 +02:00
parent 0b2fb548c3
commit 50c404ce4a
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ void PixelShaderManager::SetAlpha(const AlphaTest& alpha)
void PixelShaderManager::SetDestAlpha(const ConstantAlpha& alpha)
{
constants.alpha[3] = alpha.alpha;
constants.alpha[3] = alpha.alpha / 255.0f;
dirty = true;
}