From bd56983b42f0424c2b5f7c6c066ba2d12b94b610 Mon Sep 17 00:00:00 2001 From: Bastien Bouclet Date: Tue, 26 Jun 2018 08:01:59 +0200 Subject: MOHAWK: RIVEN: Tweak a bit the main menu items * Move the text to the left so the japanese version is not cut. * Increase the size of the text so it looks better when scaled up. --- engines/mohawk/riven_stacks/aspit.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'engines/mohawk/riven_stacks/aspit.cpp') diff --git a/engines/mohawk/riven_stacks/aspit.cpp b/engines/mohawk/riven_stacks/aspit.cpp index ee68587bf7..a94b454257 100644 --- a/engines/mohawk/riven_stacks/aspit.cpp +++ b/engines/mohawk/riven_stacks/aspit.cpp @@ -98,14 +98,17 @@ void ASpit::xastartupbtnhide(const ArgumentArray &args) { const char *fontname; const Graphics::Font *font = nullptr; - if (_vm->getLanguage() != Common::JA_JPN) + int fontHeight; + if (_vm->getLanguage() != Common::JA_JPN) { fontname = "FreeSans.ttf"; - else + fontHeight = 12; + } else { fontname = "mplus-2c-regular.ttf"; + fontHeight = 11; + } #if defined(USE_FREETYPE2) - int fontHeight = 11; if (file.open(fontname)) { font = Graphics::loadTTFFont(file, fontHeight); } -- cgit v1.2.3