gsdx: Clean up a few warnings.

This commit is contained in:
lightningterror 2021-04-12 21:39:53 +02:00
parent 6251c3f8ab
commit fafbb3cc63
2 changed files with 3 additions and 3 deletions

View File

@ -1364,7 +1364,7 @@ public:
for(int i = 0; i < 4; i++) s[i] = (columnTable32[j][i*2] & 0x0f) | (columnTable32[j][i*2+1] << 4); for(int i = 0; i < 4; i++) s[i] = (columnTable32[j][i*2] & 0x0f) | (columnTable32[j][i*2+1] << 4);
} }
GSVector4i v4, v5, v6, v7; GSVector4i v4, v5, v6;
#if _M_SSE >= 0x501 #if _M_SSE >= 0x501
@ -1451,7 +1451,7 @@ public:
__forceinline static void UnpackAndWriteBlock4HH(const uint8* RESTRICT src, int srcpitch, uint8* RESTRICT dst) __forceinline static void UnpackAndWriteBlock4HH(const uint8* RESTRICT src, int srcpitch, uint8* RESTRICT dst)
{ {
GSVector4i v4, v5, v6, v7; GSVector4i v4, v5, v6;
#if _M_SSE >= 0x501 #if _M_SSE >= 0x501

View File

@ -2785,7 +2785,7 @@ __forceinline void GSState::VertexKick(uint32 skip)
v2 = GSVector4i::loadl(&m_vertex.xy[(xy_tail + 3) & 3]); // T-1 v2 = GSVector4i::loadl(&m_vertex.xy[(xy_tail + 3) & 3]); // T-1
v3 = GSVector4i::loadl(&m_vertex.xy[(xy_tail - m) & 3]); // H v3 = GSVector4i::loadl(&m_vertex.xy[(xy_tail - m) & 3]); // H
GSVector4 cross; //GSVector4 cross;
switch (prim) switch (prim)
{ {