Related to Texture's glitches:

* fixed a bug on QUAD-Vertex generator

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6478 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
gnick79 2010-11-25 20:39:54 +00:00
parent fae12f43c2
commit 2e59d26133
1 changed files with 5 additions and 5 deletions

View File

@ -21,9 +21,9 @@
*
QUAD simulator
0 2 4 6
1 3 5 7
021231 243453
0 1 4 5
3 2 7 6
012023 147172 ...
*/
//Init
@ -235,8 +235,8 @@ void IndexGenerator::AddQuads(int numVerts)
{
*Tptr++ = index+i*4;
*Tptr++ = index+i*4+1;
*Tptr++ = index+i*4+3;
*Tptr++ = index+i*4+1;
*Tptr++ = index+i*4+2;
*Tptr++ = index+i*4;
*Tptr++ = index+i*4+2;
*Tptr++ = index+i*4+3;
}