aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/tools/graphics_png.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/tools/graphics_png.h')
-rw-r--r--engines/sci/tools/graphics_png.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sci/tools/graphics_png.h b/engines/sci/tools/graphics_png.h
index d0dcd4bb9e..d4cfd2b50e 100644
--- a/engines/sci/tools/graphics_png.h
+++ b/engines/sci/tools/graphics_png.h
@@ -56,8 +56,8 @@ write_pic_png(char *filename, guint8 *pic);
int
png_save_buffer(picture_t pic, char *name,
- int xoffset, int yoffset, int width, int height,
- byte *data, int force_8bpp_special);
+ int xoffset, int yoffset, int width, int height,
+ byte *data, int force_8bpp_special);
/* Stores any buffer in a png file
** Parameters: (picture_t) pic: The picture_t containing the parameters of the buffer
** (char *) name: File name to write to
@@ -77,8 +77,8 @@ png_save_buffer(picture_t pic, char *name,
byte *
png_load_buffer(picture_t pic, char *name,
- int *xoffset, int *yoffset, int *width, int *height,
- int *size, int force_8bpp_special);
+ int *xoffset, int *yoffset, int *width, int *height,
+ int *size, int force_8bpp_special);
/* Loads a buffer from a png file
** Parameters: (picture_t) pic: The picture_t containing the target parameters
** (char *) name: The file name of the file to read from