diff options
author | Ori Avtalion | 2010-04-12 21:21:06 +0000 |
---|---|---|
committer | Ori Avtalion | 2010-04-12 21:21:06 +0000 |
commit | 2fc9d6845b51dd589995891681ac01d241e9a2c9 (patch) | |
tree | df054e0e7ca91a179ab140fd5c2961f4e0345598 /engines/gob | |
parent | 3b252cb4c50494a60ddd3f40589336a757024f3e (diff) | |
download | scummvm-rg350-2fc9d6845b51dd589995891681ac01d241e9a2c9.tar.gz scummvm-rg350-2fc9d6845b51dd589995891681ac01d241e9a2c9.tar.bz2 scummvm-rg350-2fc9d6845b51dd589995891681ac01d241e9a2c9.zip |
Apply patch #2982163 - CONFIG: Use HE keyword instead of HB for the Hebrew language
svn-id: r48645
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/detection.cpp | 6 | ||||
-rw-r--r-- | engines/gob/gob.cpp | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/engines/gob/detection.cpp b/engines/gob/detection.cpp index 656f6336da..1f8bfdc138 100644 --- a/engines/gob/detection.cpp +++ b/engines/gob/detection.cpp @@ -1881,7 +1881,7 @@ static const GOBGameDescription gameDescriptions[] = { "lit", "", AD_ENTRY1s("intro.stk", "e0767783ff662ed93665446665693aef", 4371238), - HB_ISR, + HE_ISR, kPlatformPC, ADGF_NO_FLAGS, GUIO_NOSUBTITLES | GUIO_NOSPEECH @@ -2317,7 +2317,7 @@ static const GOBGameDescription gameDescriptions[] = { "fascination", "VGA 3 disks edition", AD_ENTRY1s("intro.stk", "d6e45ce548598727e2b5587a99718eba", 1055909), - HB_ISR, + HE_ISR, kPlatformPC, ADGF_NO_FLAGS, GUIO_NOSUBTITLES | GUIO_NOSPEECH @@ -2485,7 +2485,7 @@ static const GOBGameDescription gameDescriptions[] = { "gob3", "", AD_ENTRY1s("intro.stk", "904fc32032295baa3efb3a41f17db611", 178582), - HB_ISR, + HE_ISR, kPlatformPC, ADGF_NO_FLAGS, GUIO_NOSUBTITLES | GUIO_NOSPEECH diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp index 6ad1214dd6..024728a1d1 100644 --- a/engines/gob/gob.cpp +++ b/engines/gob/gob.cpp @@ -66,7 +66,7 @@ const Common::Language GobEngine::_gobToScummVMLang[] = { Common::EN_USA, Common::NL_NLD, Common::KO_KOR, - Common::HB_ISR, + Common::HE_ISR, Common::PT_BRA, Common::JA_JPN }; @@ -290,7 +290,7 @@ Common::Error GobEngine::run() { case Common::KO_KOR: _global->_language = kLanguageKorean; break; - case Common::HB_ISR: + case Common::HE_ISR: _global->_language = kLanguageHebrew; break; case Common::PT_BRA: |