Stop showing z = 1.0 for non through in debugger.

Oops.
This commit is contained in:
Unknown W. Brackets 2014-02-09 00:33:15 -08:00
parent 442b3171dc
commit 7380c5b664
2 changed files with 2 additions and 1 deletions

View file

@ -939,7 +939,7 @@ bool TransformDrawEngine::GetCurrentSimpleVertices(int count, std::vector<GPUDeb
}
vertices[i].x = drawPos.x;
vertices[i].y = drawPos.y;
vertices[i].z = 1.0;
vertices[i].z = drawPos.z;
if (gstate.vertType & GE_VTYPE_COL_MASK) {
memcpy(vertices[i].c, vert.color, sizeof(vertices[i].c));
} else {