From 3a8f5c5225a6eefb1613f082c078670c643cc7e8 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Mon, 18 Jun 2012 16:31:16 +0000 Subject: REFACTOR [a vs an] From /dev/humancontroller. --- src/renderer/tr_image_png.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/renderer') diff --git a/src/renderer/tr_image_png.c b/src/renderer/tr_image_png.c index 4dc9d9bb..b30c7fea 100644 --- a/src/renderer/tr_image_png.c +++ b/src/renderer/tr_image_png.c @@ -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)) -- cgit