diff options
Diffstat (limited to 'src/PNG.hpp')
-rw-r--r-- | src/PNG.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PNG.hpp b/src/PNG.hpp index 1647d03..ee6ffd4 100644 --- a/src/PNG.hpp +++ b/src/PNG.hpp @@ -33,9 +33,9 @@ namespace MinedMap { namespace PNG { -void write(const char *filename, const uint8_t *data, size_t width, size_t height); -void read(const char *filename, uint8_t *data, size_t width, size_t height); -void mipmap(const char *output, size_t width, size_t height, const char *nw, const char *ne, const char *sw, const char *se); +void write(const char *filename, const uint8_t *data, size_t width, size_t height, bool colored); +void read(const char *filename, uint8_t *data, size_t width, size_t height, bool colored); +void mipmap(const char *output, size_t width, size_t height, bool colored, const char *nw, const char *ne, const char *sw, const char *se); } } |