diff options
author | D G Turner | 2017-10-28 11:24:58 +0100 |
---|---|---|
committer | D G Turner | 2017-10-28 11:24:58 +0100 |
commit | 04162497651643f6fdc6b61f4e70b0f9cf616808 (patch) | |
tree | edf5e11754a1ed68191e66f58880ee357b17f28f /engines/saga | |
parent | 913aae6155bcbe745876041e36fa3f0175b35a2a (diff) | |
download | scummvm-rg350-04162497651643f6fdc6b61f4e70b0f9cf616808.tar.gz scummvm-rg350-04162497651643f6fdc6b61f4e70b0f9cf616808.tar.bz2 scummvm-rg350-04162497651643f6fdc6b61f4e70b0f9cf616808.zip |
SAGA: Add Define for French Language for clarity.
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; } |