This commit is contained in:
gabest
2008-12-07 17:57:18 +00:00
parent 36fbf0ea92
commit a79db9d22b

View File

@@ -566,11 +566,11 @@ int GSRasterizerList::Draw(GSVertexSW* vertices, int count, const void* texture)
int prims = 0;
POSITION pos = GetHeadPosition();
POSITION pos = GetTailPosition();
while(pos)
{
GSRasterizerMT* r = GetNext(pos);
GSRasterizerMT* r = GetPrev(pos);
prims += r->Draw(vertices, count, texture);
}