diff options
author | Sergeanur <s.anureev@yandex.ua> | 2021-01-10 21:37:11 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-01-10 21:37:11 +0100 |
commit | 585300cd335abe6cc13519daaab3ed30266b02a5 (patch) | |
tree | 74b1620261da0be5b467e3bf9b46540b57c24d15 | |
parent | fix pickup coronas (diff) | |
download | re3-585300cd335abe6cc13519daaab3ed30266b02a5.tar re3-585300cd335abe6cc13519daaab3ed30266b02a5.tar.gz re3-585300cd335abe6cc13519daaab3ed30266b02a5.tar.bz2 re3-585300cd335abe6cc13519daaab3ed30266b02a5.tar.lz re3-585300cd335abe6cc13519daaab3ed30266b02a5.tar.xz re3-585300cd335abe6cc13519daaab3ed30266b02a5.tar.zst re3-585300cd335abe6cc13519daaab3ed30266b02a5.zip |
Diffstat (limited to '')
-rw-r--r-- | src/render/Font.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/render/Font.cpp b/src/render/Font.cpp index 04b1e074..6d569591 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 (RenderState.bFontHalfTexture && c == 208) + if (Details.bFontHalfTexture && c == 208) c = '\0'; float xoff = c % 16; float yoff = c / 16; @@ -1051,10 +1051,10 @@ CFont::GetCharacterWidth(wchar c) return Size[LanguageSet][Details.style][192]; #else - if (Details.proportional) - return Size[Details.style][c]; + if (RenderState.proportional) + return Size[RenderState.style][c]; else - return Size[Details.style][209]; + return Size[RenderState.style][209]; #endif // MORE_LANGUAGES } |