Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix the signed/unsigned comparison warnings created by a recent commit.
  • Loading branch information
glennricster committed Jan 12, 2013
1 parent dcc216a commit 2cd415d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/VideoCommon/Src/PixelShaderGen.cpp
Expand Up @@ -141,7 +141,7 @@ void GetPixelShaderId(PIXELSHADERUID *uid, DSTALPHA_MODE dstAlphaMode, u32 compo
}

u32* ptr = &uid->values[2];
for (unsigned int i = 0; i < bpmem.genMode.numtevstages+1; ++i)
for (unsigned int i = 0; i < bpmem.genMode.numtevstages+1u; ++i)
{
StageHash(i, ptr);
ptr += 4; // max: ptr = &uid->values[66]
Expand Down Expand Up @@ -204,7 +204,7 @@ void GetSafePixelShaderId(PIXELSHADERUIDSAFE *uid, DSTALPHA_MODE dstAlphaMode, u

*ptr++ = bpmem.tevindref.hex; // 31

for (unsigned int i = 0; i < bpmem.genMode.numtevstages+1; ++i) // up to 16 times
for (unsigned int i = 0; i < bpmem.genMode.numtevstages+1u; ++i) // up to 16 times
{
*ptr++ = bpmem.combiners[i].colorC.hex; // 32+5*i
*ptr++ = bpmem.combiners[i].alphaC.hex; // 33+5*i
Expand Down

0 comments on commit 2cd415d

Please sign in to comment.