Ticket #8609: englishDIGCMI.diff

File englishDIGCMI.diff, 494 bytes (added by SF/clemty, 17 years ago)

SCUMM: enable setting of English text for DIG/CoMI

  • string.cpp.

    old new  
    10631063        ScummFile file;
    10641064        int32 size;
    10651065
     1066        // if game is manually set to English, don't try to load localized text
     1067        if ((_language == Common::EN_ANY) || (_language == Common::EN_USA) || (_language == Common::EN_GRB)) {
     1068                _existLanguageFile = false;
     1069                return;
     1070        }
     1071
    10661072        if (_game.id == GID_DIG) {
    10671073                openFile(file, "language.bnd");
    10681074        } else if (_game.id == GID_CMI) {