Skip to content

Commit

Permalink
video: some more pixel_t consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiangreffrath committed Apr 9, 2018
1 parent 8d3e982 commit e59bb5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/v_video.c
Expand Up @@ -655,7 +655,7 @@ typedef PACKED_STRUCT (
// WritePCXfile // WritePCXfile
// //


void WritePCXfile(char *filename, byte *data, void WritePCXfile(char *filename, pixel_t *data,
int width, int height, int width, int height,
byte *palette) byte *palette)
{ {
Expand Down Expand Up @@ -724,7 +724,7 @@ static void warning_fn(png_structp p, png_const_charp s)
printf("libpng warning: %s\n", s); printf("libpng warning: %s\n", s);
} }


void WritePNGfile(char *filename, byte *data, void WritePNGfile(char *filename, pixel_t *data,
int width, int height, int width, int height,
byte *palette) byte *palette)
{ {
Expand Down

0 comments on commit e59bb5f

Please sign in to comment.