mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-13 21:28:38 +00:00
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:
parent
64da7dd76b
commit
10b2eedb61
@ -554,8 +554,8 @@ int Values[100]={0,};
|
||||
__forceinline void SET_VERTEX(VertexGPU *p, int Index, const VB& curvb)
|
||||
{
|
||||
int index = Index;
|
||||
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->x = ((((int)gs.gsvertex[index].x - curvb.offset.x) >> 1) & 0xffff);
|
||||
p->y = ((((int)gs.gsvertex[index].y - curvb.offset.y) >> 1) & 0xffff);
|
||||
|
||||
#ifdef LSD_MODE
|
||||
int diffX = (int)gs.gsvertex[index].x - curvb.offset.x;
|
||||
|
Loading…
Reference in New Issue
Block a user