diff options
Diffstat (limited to 'engines/saga')
-rw-r--r-- | engines/saga/introproc_ite.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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; } |