Merge pull request #30 from lvonasek/feature_lightmaps_fixed

Do not use fast-math flag, it leads to lightmap issues
This commit is contained in:
Simon 2022-03-20 18:25:52 +00:00 committed by GitHub
commit 2500ffe780
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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