aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/introproc_ite.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/saga/introproc_ite.cpp')
-rw-r--r--engines/saga/introproc_ite.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/saga/introproc_ite.cpp b/engines/saga/introproc_ite.cpp
index 3c10cbe1dd..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
@@ -128,6 +129,8 @@ EventColumns *Scene::queueIntroDialogue(EventColumns *eventColumns, int n_dialog
textEntry.rect.top = INTRO_DE_CAPTION_Y;
} 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_FR_CAPTION_Y;
} else {
textEntry.rect.top = INTRO_CAPTION_Y;
}
@@ -379,6 +382,8 @@ int Scene::ITEIntroCaveCommonProc(int param, int caveScene) {
lang = 1;
else if (_vm->getLanguage() == Common::IT_ITA)
lang = 2;
+ else if (_vm->getLanguage() == Common::FR_FRA)
+ lang = 3;
int n_dialogues = 0;