mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Merge pull request #585 from Subv/local_var
Rasterizer: Fixed a warning in GetWrappedTexCoord.
This commit is contained in:
		
						commit
						4cc1a71441
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		|  | @ -266,10 +266,10 @@ static void ProcessTriangleInternal(const VertexShader::OutputVertex& v0, | |||
| 
 | ||||
|                         case Regs::TextureConfig::MirroredRepeat: | ||||
|                         { | ||||
|                             int val = (int)((unsigned)val % (2 * size)); | ||||
|                             if (val >= size) | ||||
|                                 val = 2 * size - 1 - val; | ||||
|                             return val; | ||||
|                             int coord = (int)((unsigned)val % (2 * size)); | ||||
|                             if (coord >= size) | ||||
|                                 coord = 2 * size - 1 - coord; | ||||
|                             return coord; | ||||
|                         } | ||||
| 
 | ||||
|                         default: | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue