]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - image_png.c
host: Gracefully Sys_Error if we encounter any error during init
[xonotic/darkplaces.git] / image_png.c
index 7ef74f9a54a1f1445e65246e9cbb0c4b0d32fbd4..600f787b808fb91ccd227347e9bcb65e4efac854 100644 (file)
@@ -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;