From 322d93ab0cbbcf8f568d113b4460f943b90b587d Mon Sep 17 00:00:00 2001 From: Sergeanur Date: Sat, 9 Jan 2021 16:55:45 +0200 Subject: [PATCH] Fix font --- src/render/Font.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/render/Font.cpp b/src/render/Font.cpp index 3517031d..04b1e074 100644 --- a/src/render/Font.cpp +++ b/src/render/Font.cpp @@ -432,7 +432,7 @@ CFont::PrintChar(float x, float y, wchar c) bDontPrint = c == '\0'; float w = GetCharacterWidth(c) / 32.0f; - if (Details.bFontHalfTexture && c == 208) + if (RenderState.bFontHalfTexture && c == 208) c = '\0'; float xoff = c % 16; float yoff = c / 16; @@ -444,7 +444,7 @@ CFont::PrintChar(float x, float y, wchar c) } #endif - if(Details.style == FONT_BANK || Details.style == FONT_STANDARD){ + if(RenderState.style == FONT_BANK || RenderState.style == FONT_STANDARD){ if (bDontPrint) return; if (RenderState.slant == 0.0f) { #ifdef FIX_BUGS