diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2015-01-20 01:58:11 +0100 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2015-01-20 09:22:55 +0100 |
| commit | 46ab5d63d62ccb70b3502fbdfffcbd04a3eefb65 (patch) | |
| tree | 730dc0cdea849fba747bef077bd374c344c0017e /Source/Core/VideoCommon/VertexLoader.cpp | |
| parent | 80617ec6bd9c654835865780831e58fb434be90e (diff) | |
VertexLoader: never reset alpha in 8888 colors
Fixes the opening menu of Xenoblade Chronicles.
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoader.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader.cpp b/Source/Core/VideoCommon/VertexLoader.cpp index f764aae478..4edb6a89ef 100644 --- a/Source/Core/VideoCommon/VertexLoader.cpp +++ b/Source/Core/VideoCommon/VertexLoader.cpp @@ -83,9 +83,6 @@ VertexLoader::VertexLoader(const TVtxDesc &vtx_desc, const VAT &vtx_attr) m_posScale = 1.0f / (1U << m_VtxAttr.PosFrac); for (int i = 0; i < 8; i++) m_tcScale[i] = 1.0f / (1U << m_VtxAttr.texCoord[i].Frac); - - for (int i = 0; i < 2; i++) - m_colElements[i] = m_VtxAttr.color[i].Elements; } void VertexLoader::CompileVertexTranslator() |
