diff options
author | volzhs <volzhs@gmail.com> | 2018-01-16 22:22:59 +0900 |
---|---|---|
committer | volzhs <volzhs@gmail.com> | 2018-01-16 22:56:54 +0900 |
commit | c5e3acc29c44e11e5416c66cad8f93b82c93e6b9 (patch) | |
tree | e40066395708f3c4d457c71a2575dbcf6472f252 /modules | |
parent | 05b1843818fd07f084816ec506ec505e24f8f02c (diff) |
Support colored font
Diffstat (limited to 'modules')
-rw-r--r-- | modules/freetype/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/freetype/SCsub b/modules/freetype/SCsub index f69b632e76..a34a650a4d 100644 --- a/modules/freetype/SCsub +++ b/modules/freetype/SCsub @@ -87,6 +87,6 @@ if env['builtin_freetype']: # Godot source files env.add_source_files(env.modules_sources, "*.cpp") -env.Append(CCFLAGS=['-DFREETYPE_ENABLED']) +env.Append(CCFLAGS=['-DFREETYPE_ENABLED', '-DFT_CONFIG_OPTION_USE_PNG']) Export('env') |