REFACTOR [a vs an]

From /dev/humancontroller.
This commit is contained in:
Zack Middleton 2012-06-18 16:31:16 +00:00
parent 4bd24d3182
commit f3e7012bdb
27 changed files with 39 additions and 39 deletions

View file

@ -962,7 +962,7 @@ static qboolean UnfilterImage(uint8_t *DecompressedData,
PixelLeft = DecompPtr;
/*
* We only have a upleft pixel if we are on the second line or above.
* We only have an upleft pixel if we are on the second line or above.
*/
if(h > 0)
@ -2131,7 +2131,7 @@ void R_LoadPNG(const char *name, byte **pic, int *width, int *height)
ChunkHeaderType = BigLong(CH->Type);
/*
* Check if the chunk is an PLTE.
* Check if the chunk is a PLTE.
*/
if(!(ChunkHeaderType == PNG_ChunkType_PLTE))
@ -2202,7 +2202,7 @@ void R_LoadPNG(const char *name, byte **pic, int *width, int *height)
}
/*
* transparency information is sometimes stored in an tRNS chunk
* transparency information is sometimes stored in a tRNS chunk
*/
/*
@ -2233,7 +2233,7 @@ void R_LoadPNG(const char *name, byte **pic, int *width, int *height)
ChunkHeaderType = BigLong(CH->Type);
/*
* Check if the chunk is an tRNS.
* Check if the chunk is a tRNS.
*/
if(!(ChunkHeaderType == PNG_ChunkType_tRNS))