mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-11 07:11:36 +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
|
CLIENT_CFLAGS += $(SDL_CFLAGS) -DSDL_DISABLE_IMMINTRIN_H -fno-builtin-cos -fno-builtin-sin
|
||||||
|
|
||||||
OPTIMIZEVM = -O3 -funroll-loops -fomit-frame-pointer
|
OPTIMIZEVM = -O3 -funroll-loops -fomit-frame-pointer
|
||||||
OPTIMIZE = $(OPTIMIZEVM) -ffast-math
|
OPTIMIZE = $(OPTIMIZEVM)
|
||||||
|
|
||||||
HAVE_VM_COMPILED = false
|
HAVE_VM_COMPILED = false
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue