From 89f001a72f3906edcb81923c91656d9c8ab85e0f Mon Sep 17 00:00:00 2001 From: Lubos Date: Sun, 20 Mar 2022 18:58:35 +0100 Subject: [PATCH] Do not use fast-math flag, it leads to lightmap issues --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c51f81cb..5ebef3c0 100644 --- a/Makefile +++ b/Makefile @@ -443,7 +443,7 @@ ifeq ($(PLATFORM),android) CLIENT_CFLAGS += $(SDL_CFLAGS) -DSDL_DISABLE_IMMINTRIN_H -fno-builtin-cos -fno-builtin-sin OPTIMIZEVM = -O3 -funroll-loops -fomit-frame-pointer - OPTIMIZE = $(OPTIMIZEVM) -ffast-math + OPTIMIZE = $(OPTIMIZEVM) HAVE_VM_COMPILED = false