[Scummvm-git-logs] scummvm master -> 985335154e02034f8f1b58684ed2ace65e493b9d

sev- sev at scummvm.org
Fri Oct 16 19:36:42 UTC 2020


This automated email contains information about 3 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
bd52fc354b GOB: Fix for Russian Woodruff subtitles
49100d12c4 NEWS: Mention Gob engine changes
985335154e NEWS: Mention new engines and their improvements


Commit: bd52fc354bb912504292107619b4bd971b4d7da0
    https://github.com/scummvm/scummvm/commit/bd52fc354bb912504292107619b4bd971b4d7da0
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-10-16T21:29:09+02:00

Commit Message:
GOB: Fix for Russian Woodruff subtitles

Changed paths:
    engines/gob/gob.cpp


diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp
index 23b6669d26..b4b3ab3fe9 100644
--- a/engines/gob/gob.cpp
+++ b/engines/gob/gob.cpp
@@ -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;


Commit: 49100d12c4dae1387f0672579df49a7d3e4ec545
    https://github.com/scummvm/scummvm/commit/49100d12c4dae1387f0672579df49a7d3e4ec545
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-10-16T21:32:49+02:00

Commit Message:
NEWS: Mention Gob engine changes

Changed paths:
    NEWS.md


diff --git a/NEWS.md b/NEWS.md
index 2afd6802de..81b6c0dca3 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -12,6 +12,10 @@ For a more comprehensive changelog of the latest experimental code, see:
    - Added detections for 2020 IF Comp games.
    - Enabled Glulx sub-engine.
 
+ Gob:
+   - Added support for Bargon Attack Russian translation.
+   - Added support for Woodruff Russian translation.
+
  Lure:
    - Fix fire animation in first room when loading saves.
 


Commit: 985335154e02034f8f1b58684ed2ace65e493b9d
    https://github.com/scummvm/scummvm/commit/985335154e02034f8f1b58684ed2ace65e493b9d
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-10-16T21:36:18+02:00

Commit Message:
NEWS: Mention new engines and their improvements

Changed paths:
    NEWS.md


diff --git a/NEWS.md b/NEWS.md
index 81b6c0dca3..32cc8aa9a4 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -3,6 +3,12 @@ For a more comprehensive changelog of the latest experimental code, see:
 
 #### 2.3.0 (XXXX-XX-XX)
 
+ New games:
+   - Added support for Grim Fandango.
+   - Added support for Escape from Monkey Island.
+   - Added support for The Longest Journey.
+   - Added support for Myst 3: Exile.
+
  General:
    - Switched ScummVM GUI output to UTF-32.
 
@@ -16,6 +22,10 @@ For a more comprehensive changelog of the latest experimental code, see:
    - Added support for Bargon Attack Russian translation.
    - Added support for Woodruff Russian translation.
 
+ Grim:
+   - Added support for Brazillian Portuguese Grim Fandango.
+   - Added support for Russian EMI.
+
  Lure:
    - Fix fire animation in first room when loading saves.
 
@@ -25,6 +35,9 @@ For a more comprehensive changelog of the latest experimental code, see:
  Tinsel:
    - Enabled the Return to Launcher feature.
 
+ Stark:
+   - Added support for Hungarian translation.
+
  Supernova:
    - Added Italian translation for part 1.
 




More information about the Scummvm-git-logs mailing list