From 1dc3e9e2965c04e92f5be56a61b1bda6cca5957a Mon Sep 17 00:00:00 2001 From: jacob1 Date: Thu, 29 Aug 2019 23:35:04 -0400 Subject: [PATCH] fix --nofft renderer check --- SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConscript b/SConscript index 46e225bd6..bf6b8de98 100644 --- a/SConscript +++ b/SConscript @@ -497,7 +497,7 @@ if GetOption('static'): #Add other flags and defines -if not GetOption('nofft') or GetOption('renderer'): +if not GetOption('nofft') and not GetOption('renderer'): env.Append(CPPDEFINES=['GRAVFFT']) if not GetOption('nolua') and not GetOption('renderer') and not GetOption('font'): env.Append(CPPDEFINES=['LUACONSOLE'])