From f990d918413f24b3275a4a839af0e76a0f0b76e5 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Wed, 4 May 2022 00:42:28 +0200 Subject: [PATCH] Reverted the previous commit. --- es-core/src/resources/Font.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-core/src/resources/Font.cpp b/es-core/src/resources/Font.cpp index 498ce502f..4b9bcca81 100644 --- a/es-core/src/resources/Font.cpp +++ b/es-core/src/resources/Font.cpp @@ -156,10 +156,10 @@ Font::FontTexture::FontTexture(const int mSize) if (screenSizeModifier < 0.45f) extraTextureSize += 4; - // It's not entirely clear if the 22 and 10 constants are correct, but they seem to provide + // It's not entirely clear if the 20 and 8 constants are correct, but they seem to provide // a texture buffer large enough to hold the fonts. This logic is obviously a hack though // and needs to be properly reviewed and improved. - textureSize = glm::ivec2 {mSize * (22 + extraTextureSize), mSize * (10 + extraTextureSize / 2)}; + textureSize = glm::ivec2 {mSize * (20 + extraTextureSize), mSize * (8 + extraTextureSize / 2)}; // Make sure the size is not unreasonably large (which may be caused by a mistake in the // theme configuration).