mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
GOB: Fix for Russian Woodruff subtitles
This commit is contained in:
parent
cdc0ad802d
commit
bd52fc354b
@ -320,7 +320,6 @@ Common::Error GobEngine::run() {
|
||||
|
||||
switch (_language) {
|
||||
case Common::FR_FRA:
|
||||
case Common::RU_RUS:
|
||||
_global->_language = kLanguageFrench;
|
||||
break;
|
||||
case Common::DE_DEU:
|
||||
@ -355,6 +354,12 @@ Common::Error GobEngine::run() {
|
||||
case Common::JA_JPN:
|
||||
_global->_language = kLanguageJapanese;
|
||||
break;
|
||||
case Common::RU_RUS:
|
||||
if (_gameType == kGameTypeWoodruff)
|
||||
_global->_language = kLanguageBritish;
|
||||
else
|
||||
_global->_language = kLanguageFrench;
|
||||
break;
|
||||
default:
|
||||
_global->_language = kLanguageBritish;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user