mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 23:02:01 +00:00
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:
commit
2500ffe780
1 changed files with 1 additions and 1 deletions
2
Makefile
2
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue