From b7a09cca0c1de89f2d24c301b972514d8c63c652 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Sun, 8 Nov 2015 12:26:49 +0100 Subject: [PATCH] Adjust Arial placement and sizes --- src/localisation/language.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/localisation/language.cpp b/src/localisation/language.cpp index 678d178e46..4ed859df83 100644 --- a/src/localisation/language.cpp +++ b/src/localisation/language.cpp @@ -69,10 +69,10 @@ static TTFFontSetDescriptor TTFFontMalgun = {{ }}; static TTFFontSetDescriptor TTFFontArial = {{ - { "arial.ttf", 8, -1, -3, 6, nullptr }, - { "arial.ttf", 11, 1, -2, 14, nullptr }, - { "arial.ttf", 12, 1, -4, 14, nullptr }, - { "arial.ttf", 13, 1, 0, 20, nullptr }, + { "arial.ttf", 8, 0, -1, 6, nullptr }, + { "arial.ttf", 10, 0, -1, 12, nullptr }, + { "arial.ttf", 11, 0, -1, 12, nullptr }, + { "arial.ttf", 12, 0, -1, 20, nullptr }, }}; const language_descriptor LanguagesDescriptors[LANGUAGE_COUNT] = { @@ -87,12 +87,12 @@ const language_descriptor LanguagesDescriptors[LANGUAGE_COUNT] = { { "es-ES", "Spanish", "Espa\xC3\xB1ol", "spanish_sp", FONT_OPENRCT2_SPRITE, RCT2_LANGUAGE_ID_SPANISH }, // LANGUAGE_SPANISH { "sv-SE", "Swedish", "Svenska", "swedish", FONT_OPENRCT2_SPRITE, RCT2_LANGUAGE_ID_SWEDISH }, // LANGUAGE_SWEDISH { "it-IT", "Italian", "Italiano", "italian", FONT_OPENRCT2_SPRITE, RCT2_LANGUAGE_ID_ITALIAN }, // LANGUAGE_ITALIAN - { "pt-BR", "Portuguese (BR)", "Portugu\xC3\xAAs (BR)", "portuguese_br", FONT_OPENRCT2_SPRITE, RCT2_LANGUAGE_ID_PORTUGUESE }, // LANGUAGE_PORTUGUESE_BR + { "pt-BR", "Portuguese (BR)", "Portugu\xC3\xAAs (BR)", "portuguese_br", FONT_OPENRCT2_SPRITE, RCT2_LANGUAGE_ID_PORTUGUESE }, // LANGUAGE_PORTUGUESE_BR { "zh-Hant", "Chinese (Traditional)", "Chinese (Traditional)", "chinese_traditional", &TTFFontMingLiu, RCT2_LANGUAGE_ID_CHINESE_TRADITIONAL }, // LANGUAGE_CHINESE_TRADITIONAL { "zh-Hans", "Chinese (Simplified)", "Chinese (Simplified)", "chinese_simplified", &TTFFontSimSun, RCT2_LANGUAGE_ID_CHINESE_SIMPLIFIED }, // LANGUAGE_CHINESE_SIMPLIFIED { "fi-FI", "Finnish", "Suomi", "finnish", FONT_OPENRCT2_SPRITE, RCT2_LANGUAGE_ID_ENGLISH_UK }, // LANGUAGE_FINNISH { "kr-KR", "Korean", "Korean", "korean", &TTFFontMalgun, RCT2_LANGUAGE_ID_KOREAN }, // LANGUAGE_KOREAN - { "ru-RU", "Russian", "ру́сский язы́к", "russian", &TTFFontArial, RCT2_LANGUAGE_ID_ENGLISH_UK }, // LANGUAGE_RUSSIAN + { "ru-RU", "Russian", "Russian", "russian", &TTFFontArial, RCT2_LANGUAGE_ID_ENGLISH_UK }, // LANGUAGE_RUSSIAN }; int gCurrentLanguage = LANGUAGE_UNDEFINED;