summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2020-10-30 18:45:20 +0100
committerCharles Pigott <charlespigott@googlemail.com>2020-10-30 18:07:58 +0000
commitcf29d23ba4ca2b9e6b638720e186bf33e11d5a0f (patch)
treed45e68c925f572d971794e5194e5e5741f91a3dc /src
parent421304c85008fc5775eef8fb23dbabcf5033e8f1 (diff)
downloadopenttd-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.cpp2
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;
}
/**