mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
LoadPCX(): Turn convert argument into a qboolean.
This commit is contained in:
parent
af8c1e4cc2
commit
4090674fa5
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue