X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=image_png.c;h=6b226af060d7f4f1eb85276a1ca3f8b08216757c;hp=7ef74f9a54a1f1445e65246e9cbb0c4b0d32fbd4;hb=ca767b6a14085cfd278eaf6999c0177f75bf19fa;hpb=7a33e14ce92c006199d3f6dc76c1afdcfcae30b4 diff --git a/image_png.c b/image_png.c index 7ef74f9a..6b226af0 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 [] = { @@ -172,12 +172,12 @@ qboolean PNG_OpenLibrary (void) return true; // Load the DLL - if(!Sys_LoadLibrary (dllnames, &png_dll, pngfuncs)) + if(!Sys_LoadDependency (dllnames, &png_dll, pngfuncs)) return false; if(qpng_access_version_number() / 100 >= 104) - if(!Sys_LoadLibrary (dllnames, &png14_dll, png14funcs)) + if(!Sys_LoadDependency (dllnames, &png14_dll, png14funcs)) { - Sys_UnloadLibrary (&png_dll); + Sys_FreeLibrary (&png_dll); return false; } return true; @@ -193,8 +193,8 @@ Unload the PNG DLL */ void PNG_CloseLibrary (void) { - Sys_UnloadLibrary (&png14_dll); - Sys_UnloadLibrary (&png_dll); + Sys_FreeLibrary (&png14_dll); + Sys_FreeLibrary (&png_dll); } /* @@ -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;