From 8cac985fd0c1934d4147887a0c8307af2073b540 Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Thu, 25 Apr 2024 01:37:15 +1000 Subject: [PATCH] oops: fix one-line mistake that caused some glyphs to randomly scramble --- source/core/StarFont.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/StarFont.cpp b/source/core/StarFont.cpp index 86262f5..7155d69 100644 --- a/source/core/StarFont.cpp +++ b/source/core/StarFont.cpp @@ -106,7 +106,7 @@ tuple Font::render(String::Char c) { } m_loadedPixelSize = m_pixelSize; - m_loadedChar = m_loadedChar; + m_loadedChar = c; FT_GlyphSlot slot = face->glyph;