From 04162497651643f6fdc6b61f4e70b0f9cf616808 Mon Sep 17 00:00:00 2001 From: D G Turner Date: Sat, 28 Oct 2017 11:24:58 +0100 Subject: SAGA: Add Define for French Language for clarity. --- engines/saga/introproc_ite.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engines/saga/introproc_ite.cpp b/engines/saga/introproc_ite.cpp index ed8d50a8c5..824a94a663 100644 --- a/engines/saga/introproc_ite.cpp +++ b/engines/saga/introproc_ite.cpp @@ -42,6 +42,7 @@ namespace Saga { #define INTRO_CAPTION_Y 170 #define INTRO_DE_CAPTION_Y 160 #define INTRO_IT_CAPTION_Y 160 +#define INTRO_FR_CAPTION_Y 160 #define INTRO_VOICE_PAD 50 #define INTRO_VOICE_LETTERLEN 90 @@ -129,7 +130,7 @@ EventColumns *Scene::queueIntroDialogue(EventColumns *eventColumns, int n_dialog } else if (_vm->getLanguage() == Common::IT_ITA) { textEntry.rect.top = INTRO_IT_CAPTION_Y; } else if (_vm->getLanguage() == Common::FR_FRA) { - textEntry.rect.top = INTRO_IT_CAPTION_Y; + textEntry.rect.top = INTRO_FR_CAPTION_Y; } else { textEntry.rect.top = INTRO_CAPTION_Y; } -- cgit v1.2.3