diff options
| author | Marcus Wanners <marcus@wanners.net> | 2009-03-05 15:58:14 +0000 |
|---|---|---|
| committer | Marcus Wanners <marcus@wanners.net> | 2009-03-05 15:58:14 +0000 |
| commit | c0cf64177976ea562a5ea113dd61d72bfd0261c9 (patch) | |
| tree | c2df3688239165bf97073934245b7680bfbd604f /Source/Core/VideoCommon | |
| parent | 67af94c339c8fcb3d454c0b42b36e3ce8104f923 (diff) | |
Linux compile fix.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2559 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/Src/PixelShaderGen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/PixelShaderGen.cpp b/Source/Core/VideoCommon/Src/PixelShaderGen.cpp index 28fc58ac0a..d57b4fabb5 100644 --- a/Source/Core/VideoCommon/Src/PixelShaderGen.cpp +++ b/Source/Core/VideoCommon/Src/PixelShaderGen.cpp @@ -581,7 +581,7 @@ static void WriteStage(char *&p, int n, u32 texture_mask) int texcoord = bpmem.tevorders[n/2].getTexCoord(n&1); int texfun = xfregs.texcoords[texcoord].texmtxinfo.projection; - bool bHasTexCoord = unsigned int(texcoord) < bpmem.genMode.numtexgens; + bool bHasTexCoord = (u32)texcoord < bpmem.genMode.numtexgens; bool bHasIndStage = bpmem.tevind[n].IsActive() && bpmem.tevind[n].bt < bpmem.genMode.numindstages; // HACK to handle cases where the tex gen is not enabled |
