diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2018-02-19 21:51:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-19 21:51:53 +0100 |
| commit | 5933cf867a1819c5ccc4f531712971307d9dc6db (patch) | |
| tree | 1ffd4fffb477ccc6fae09017d1e428447a64b3a2 /modules | |
| parent | 745524486613d24fb1287877af91e00471df7650 (diff) | |
| parent | c5e3acc29c44e11e5416c66cad8f93b82c93e6b9 (diff) | |
Merge pull request #15780 from volzhs/emoji
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') |