summaryrefslogtreecommitdiff
path: root/src/renderer
diff options
context:
space:
mode:
Diffstat (limited to 'src/renderer')
-rw-r--r--src/renderer/tr_image_png.c8
1 files changed, 4 insertions, 4 deletions
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))