From 578ad110112a20c7944ee6946f83719708a2f799 Mon Sep 17 00:00:00 2001 From: Le Philousophe Date: Sat, 12 Oct 2019 11:51:34 +0200 Subject: CRYOMNI3D: Add Brazilian language support --- engines/cryomni3d/versailles/menus.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'engines/cryomni3d/versailles') diff --git a/engines/cryomni3d/versailles/menus.cpp b/engines/cryomni3d/versailles/menus.cpp index bec962e094..ea34b5d80d 100644 --- a/engines/cryomni3d/versailles/menus.cpp +++ b/engines/cryomni3d/versailles/menus.cpp @@ -48,7 +48,8 @@ void CryOmni3DEngine_Versailles::drawMenuTitle(Graphics::ManagedSurface *surface int titleX, titleY, subtitleX, subtitleY; if (getLanguage() == Common::FR_FRA || - getLanguage() == Common::ES_ESP) { + getLanguage() == Common::ES_ESP || + getLanguage() == Common::PT_BRA) { titleX = 144; titleY = 160; subtitleX = 305; @@ -75,7 +76,8 @@ void CryOmni3DEngine_Versailles::drawMenuTitle(Graphics::ManagedSurface *surface _fontManager.displayStr(subtitleX, subtitleY - offY, _messages[24]); if (getLanguage() == Common::FR_FRA || - getLanguage() == Common::ES_ESP) { + getLanguage() == Common::ES_ESP || + getLanguage() == Common::PT_BRA) { surface->vLine(100, 146, 172, color); surface->hLine(100, 172, 168, color); // minus 1 because hLine draws inclusive } -- cgit v1.2.3