diff options
| author | raysan5 <raysan5@gmail.com> | 2015-10-06 17:13:40 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2015-10-06 17:13:40 +0200 |
| commit | 34db515acb4f38b8478706c5962cc0038c515ce8 (patch) | |
| tree | 56e976c603b02cec79f6452085eaa278db0b6a68 /src/utils.h | |
| parent | 6ffb3c72fbbdd73467e7ef36b542f20a5b1f9300 (diff) | |
| download | raylib-34db515acb4f38b8478706c5962cc0038c515ce8.tar.gz raylib-34db515acb4f38b8478706c5962cc0038c515ce8.zip | |
Reviewed some comments and WritePNG()
Diffstat (limited to 'src/utils.h')
| -rw-r--r-- | src/utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h index 6ef8c933..77909ba6 100644 --- a/src/utils.h +++ b/src/utils.h @@ -72,7 +72,7 @@ unsigned char *DecompressData(const unsigned char *data, unsigned long compSize, #if defined(PLATFORM_DESKTOP) || defined(PLATFORM_RPI) void WriteBitmap(const char *fileName, unsigned char *imgData, int width, int height); -void WritePNG(const char *fileName, unsigned char *imgData, int width, int height); +void WritePNG(const char *fileName, unsigned char *imgData, int width, int height, int compSize); #endif void TraceLog(int msgType, const char *text, ...); // Outputs a trace log message |
