X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=image_png.c;h=5562cedaf7f275194db882857224c611971c5329;hb=afccf89beb79311062e91701cd4215f7a04654ae;hp=7ef74f9a54a1f1445e65246e9cbb0c4b0d32fbd4;hpb=b13cfcdd862ad426857b9e5825f6c73576d0358c;p=xonotic%2Fdarkplaces.git diff --git a/image_png.c b/image_png.c index 7ef74f9a..5562ceda 100644 --- a/image_png.c +++ b/image_png.c @@ -26,7 +26,7 @@ // //LadyHavoc: rewrote most of this. -#include "quakedef.h" +#include "darkplaces.h" #include "image.h" #include "image_png.h" @@ -140,7 +140,7 @@ PNG_OpenLibrary Try to load the PNG DLL ==================== */ -qboolean PNG_OpenLibrary (void) +qbool PNG_OpenLibrary (void) { const char* dllnames [] = { @@ -474,7 +474,7 @@ PNG_SaveImage_preflipped Save a preflipped PNG image to a file ==================== */ -qboolean PNG_SaveImage_preflipped (const char *filename, int width, int height, qboolean has_alpha, unsigned char *data) +qbool PNG_SaveImage_preflipped (const char *filename, int width, int height, qbool has_alpha, unsigned char *data) { unsigned int offset, linesize; qfile_t* file = NULL;