replace m_VtxDesc.Tex7Coord that I missed
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1119 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
1ceee92770
commit
70837bb034
|
@ -263,7 +263,7 @@ void ConfigDialog::AboutClick(wxCommandEvent& event)
|
|||
{
|
||||
wxMessageBox(_T("Dolphin OpenGL Plugin\nBy zerofrog(@gmail.com)\n\n"
|
||||
"A card supporting Vertex/Pixel Shader 2.0 or higher, framebuffer objects, "
|
||||
"and multiple render targets is required in order to use this plugin"),
|
||||
"and multiple render targets is required in order to use this plugin."),
|
||||
_T("Dolphin OGL"), wxOK, this);
|
||||
}
|
||||
|
||||
|
|
|
@ -232,7 +232,7 @@ void VertexLoader::CompileVertexTranslator()
|
|||
// TextureCoord
|
||||
const int tc[8] = {
|
||||
m_VtxDesc.Tex0Coord, m_VtxDesc.Tex1Coord, m_VtxDesc.Tex2Coord, m_VtxDesc.Tex3Coord,
|
||||
m_VtxDesc.Tex4Coord, m_VtxDesc.Tex5Coord, m_VtxDesc.Tex6Coord, m_VtxDesc.Tex7Coord,
|
||||
m_VtxDesc.Tex4Coord, m_VtxDesc.Tex5Coord, m_VtxDesc.Tex6Coord, (m_VtxDesc.Hex >> 31) & 3
|
||||
};
|
||||
|
||||
// Reset pipeline
|
||||
|
|
Loading…
Reference in New Issue