]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - jpeg.c
Steel Storm additions for mobile (EluanCM)
[xonotic/darkplaces.git] / jpeg.c
diff --git a/jpeg.c b/jpeg.c
index 4b276d2e1549c5fd5c2ca175a16c5e8e25c5a703..8d32adcbe19c7b708b1bc6d38dc13465a4a33aaa 100644 (file)
--- a/jpeg.c
+++ b/jpeg.c
@@ -515,6 +515,12 @@ qboolean JPEG_OpenLibrary (void)
 
        jpeg_tried_loading = true;
 
+#ifdef __ANDROID__
+       // loading the native Android libjpeg.so causes crashes
+       Con_Printf("Not opening libjpeg.so dynamically on Android - use LINK_TO_LIBJPEG instead if it is needed.\n");
+       return false;
+#endif
+
        // Load the DLL
        return Sys_LoadLibrary (dllnames, &jpeg_dll, jpegfuncs);
 #endif