From ba43135fcbcdf0592076cc8874b9b49c7bc84bbb Mon Sep 17 00:00:00 2001 From: fmOOmf <98671961+fmOOmf@users.noreply.github.com> Date: Sat, 25 Jun 2022 12:32:06 +0200 Subject: [PATCH] [kandinsky/font] Fix replacement character --- kandinsky/include/kandinsky/font.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kandinsky/include/kandinsky/font.h b/kandinsky/include/kandinsky/font.h index f1bbf7ec9..235887711 100644 --- a/kandinsky/include/kandinsky/font.h +++ b/kandinsky/include/kandinsky/font.h @@ -61,7 +61,7 @@ public: CodePoint m_codePoint; GlyphIndex m_glyphIndex; }; - static constexpr GlyphIndex IndexForReplacementCharacterCodePoint = 197; + static constexpr GlyphIndex IndexForReplacementCharacterCodePoint = 200; GlyphIndex indexForCodePoint(CodePoint c) const; void setGlyphGrayscalesForCodePoint(CodePoint codePoint, GlyphBuffer * glyphBuffer) const;