zzogl-pg: A few parenthesis went missing in my last commit.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2904 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
arcum42 2010-04-25 23:57:55 +00:00
parent 64da7dd76b
commit 10b2eedb61
1 changed files with 2 additions and 2 deletions

View File

@ -554,8 +554,8 @@ int Values[100]={0,};
__forceinline void SET_VERTEX(VertexGPU *p, int Index, const VB& curvb) __forceinline void SET_VERTEX(VertexGPU *p, int Index, const VB& curvb)
{ {
int index = Index; int index = Index;
p->x = (((int)gs.gsvertex[index].x - curvb.offset.x >> 1) & 0xffff); p->x = ((((int)gs.gsvertex[index].x - curvb.offset.x) >> 1) & 0xffff);
p->y = (((int)gs.gsvertex[index].y - curvb.offset.y >> 1) & 0xffff); p->y = ((((int)gs.gsvertex[index].y - curvb.offset.y) >> 1) & 0xffff);
#ifdef LSD_MODE #ifdef LSD_MODE
int diffX = (int)gs.gsvertex[index].x - curvb.offset.x; int diffX = (int)gs.gsvertex[index].x - curvb.offset.x;