From 695dee5b988112301df1e59d38e44041800c79a9 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 1 Jun 2021 18:04:13 +0200 Subject: [PATCH] disabled CAP_SOLV and CAP_RAY in mobile due to the limits of GLES --- sysconfig.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysconfig.h b/sysconfig.h index c90027ce..d557169b 100644 --- a/sysconfig.h +++ b/sysconfig.h @@ -634,7 +634,7 @@ union SDL_Event; #endif #ifndef CAP_SOLV -#define CAP_SOLV (MAXMDIM >= 4 && !ISWEB) +#define CAP_SOLV (MAXMDIM >= 4 && !ISWEB && !ISMOBILE) #endif #ifndef CAP_FIELD @@ -642,7 +642,7 @@ union SDL_Event; #endif #ifndef CAP_RAY -#define CAP_RAY (MAXMDIM >= 4 && CAP_GL) +#define CAP_RAY (MAXMDIM >= 4 && CAP_GL && !ISMOBILE && !ISWEB) #endif #ifndef CAP_MEMORY_RESERVE