VideoCommon: fix dstAlpha
This commit is contained in:
parent
0b2fb548c3
commit
50c404ce4a
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue