diff options
author | Martin Kiewitz | 2015-04-13 18:26:12 +0200 |
---|---|---|
committer | Martin Kiewitz | 2015-04-13 18:26:12 +0200 |
commit | 3483799959926d130bcabc1da7e424501a6ef173 (patch) | |
tree | a376395f5029f98263adc1c2ed7c720de6b80a34 /engines/sci/engine | |
parent | 537f33d9cf60fffdd473ae3cd32e2abffc9cb24f (diff) | |
download | scummvm-rg350-3483799959926d130bcabc1da7e424501a6ef173.tar.gz scummvm-rg350-3483799959926d130bcabc1da7e424501a6ef173.tar.bz2 scummvm-rg350-3483799959926d130bcabc1da7e424501a6ef173.zip |
SCI: add french qfg3 export filename for fix
Sierra translator translated the filename
Diffstat (limited to 'engines/sci/engine')
-rw-r--r-- | engines/sci/engine/kgraphics.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/engine/kgraphics.cpp b/engines/sci/engine/kgraphics.cpp index ee2249bd9d..7d24dd861f 100644 --- a/engines/sci/engine/kgraphics.cpp +++ b/engines/sci/engine/kgraphics.cpp @@ -955,8 +955,9 @@ reg_t kDrawControl(EngineState *s, int argc, reg_t *argv) { reg_t textReference = readSelector(s->_segMan, controlObject, SELECTOR(text)); if (!textReference.isNull()) { Common::String text = s->_segMan->getString(textReference); - if ((text == "a:hq1_hero.sav") || (text == "a:glory1.sav") || (text == "a:glory2.sav") || (text == "a:glory3.sav")) { + if ((text == "a:hq1_hero.sav") || (text == "a:glory1.sav") || (text == "a:glory2.sav") || (text == "a:glory3.sav") || (text == "a:gloire3.sauv")) { // Remove "a:" from hero quest / quest for glory export default filenames + // The french version of Quest For Glory 3 uses "gloire3.sauv". It seems a translator translated the filename. text.deleteChar(0); text.deleteChar(0); s->_segMan->strcpy(textReference, text.c_str()); |