From 8844caf44deda3dd53c4c253d54c79cb2879a633 Mon Sep 17 00:00:00 2001 From: Sergeanur Date: Tue, 8 Dec 2020 02:22:02 +0200 Subject: [PATCH] Fix vanilla font bug --- src/render/Font.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/render/Font.cpp b/src/render/Font.cpp index 9b022394..a3132627 100644 --- a/src/render/Font.cpp +++ b/src/render/Font.cpp @@ -374,7 +374,11 @@ CFont::PrintChar(float x, float y, wchar c) if(Details.style == FONT_BANK || Details.style == FONT_STANDARD){ if (bDontPrint) return; if (RenderState.slant == 0.0f) { +#ifdef FIX_BUGS + if (c < 192) { +#else if (c < 193) { +#endif CSprite2d::AddToBuffer( CRect(x, y, x + 32.0f * RenderState.scaleX * 1.0f,