LoadPCX(): Turn convert argument into a qboolean.

This commit is contained in:
Jeff Teunissen 2011-01-09 04:05:57 -05:00
parent af8c1e4cc2
commit 4090674fa5
2 changed files with 2 additions and 2 deletions

View file

@ -50,6 +50,6 @@ typedef struct
pcx_t *EncodePCX (byte * data, int width, int height,
int rowbytes, byte * palette, qboolean flip, int *length);
struct tex_s *LoadPCX (QFile *f, int convert, byte *pal); // tex is from Hunk_TempAlloc
struct tex_s *LoadPCX (QFile *f, qboolean convert, byte *pal);
#endif // __pcx_h

View file

@ -50,7 +50,7 @@ static __attribute__ ((used)) const char rcsid[] =
VISIBLE tex_t *
LoadPCX (QFile *f, int convert, byte *pal)
LoadPCX (QFile *f, qboolean convert, byte *pal)
{
pcx_t *pcx;
int pcx_mark;