diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2020-10-30 18:45:20 +0100 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2020-10-30 18:07:58 +0000 |
commit | cf29d23ba4ca2b9e6b638720e186bf33e11d5a0f (patch) | |
tree | d45e68c925f572d971794e5194e5e5741f91a3dc /src | |
parent | 421304c85008fc5775eef8fb23dbabcf5033e8f1 (diff) | |
download | openttd-cf29d23ba4ca2b9e6b638720e186bf33e11d5a0f.tar.xz |
Fix: build with icu-68.1
icu-68.1 removed public macro definitions for TRUE and FALSE
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/gfx_layout.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gfx_layout.cpp b/src/gfx_layout.cpp index 584a71273..ebd1afaa8 100644 --- a/src/gfx_layout.cpp +++ b/src/gfx_layout.cpp @@ -116,7 +116,7 @@ void Font::getGlyphAdvance(LEGlyphID glyph, LEPoint &advance) const le_bool Font::getGlyphPoint(LEGlyphID glyph, le_int32 pointNumber, LEPoint &point) const { - return FALSE; + return false; } /** |