[Scummvm-git-logs] scummvm master -> 41aa180ad417ba82482f46b8ea783b2079f32601
sev-
sev at scummvm.org
Mon Nov 23 16:13:20 UTC 2020
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
0d521a12b8 SCUMM: Decode resource strings using CP866 for Russian translations
41aa180ad4 SCUMM: Add RuSCUMM version of Indiana Jones and the Fate of Atlantis
Commit: 0d521a12b82c05c52e2e5ef943bc7e3d0265b7ac
https://github.com/scummvm/scummvm/commit/0d521a12b82c05c52e2e5ef943bc7e3d0265b7ac
Author: Vladimir Serbinenko (phcoder at google.com)
Date: 2020-11-23T17:13:15+01:00
Commit Message:
SCUMM: Decode resource strings using CP866 for Russian translations
Changed paths:
engines/scumm/dialogs.cpp
diff --git a/engines/scumm/dialogs.cpp b/engines/scumm/dialogs.cpp
index f74f3315e0..e7dbd717c1 100644
--- a/engines/scumm/dialogs.cpp
+++ b/engines/scumm/dialogs.cpp
@@ -473,6 +473,8 @@ const Common::U32String InfoDialog::queryResString(int stringno) {
convertFromCodePage = Common::kWindows932;
else if (_vm->_language == Common::ZH_TWN || _vm->_language == Common::ZH_CNA)
convertFromCodePage = Common::kWindows950;
+ else if (_vm->_language == Common::RU_RUS)
+ convertFromCodePage = Common::kDos866;
return convertFromCodePage == Common::kCodePageInvalid ? _(tmp) : U32String(tmp, convertFromCodePage);
}
Commit: 41aa180ad417ba82482f46b8ea783b2079f32601
https://github.com/scummvm/scummvm/commit/41aa180ad417ba82482f46b8ea783b2079f32601
Author: Vladimir Serbinenko (phcoder at google.com)
Date: 2020-11-23T17:13:15+01:00
Commit Message:
SCUMM: Add RuSCUMM version of Indiana Jones and the Fate of Atlantis
Changed paths:
devtools/scumm-md5.txt
engines/scumm/scumm-md5.h
diff --git a/devtools/scumm-md5.txt b/devtools/scumm-md5.txt
index bf831aed6e..4ad5f2b1eb 100644
--- a/devtools/scumm-md5.txt
+++ b/devtools/scumm-md5.txt
@@ -304,6 +304,7 @@ atlantis Indiana Jones and the Fate of Atlantis
12cdc256eae5a461bcc9a49975999841 -1 en DOS Floppy Demo - Paulo Vicente
99b6f822b0b2612415407865438697d6 -1 en DOS - Demo non-interactive
28d24a33448fab6795850bc9f159a4a2 11170 jp FM-TOWNS FM-TOWNS Demo non-interactive khalek, Fingolfin
+ add05fa3f50d9264f47638516c9496dd 12035 ru DOS - CD - RUSCUMM
tentacle Day of the Tentacle
acad97ab1c6fc2a5b2d98abf6db4a190 -1 en All? Floppy Floppy Version A ?
diff --git a/engines/scumm/scumm-md5.h b/engines/scumm/scumm-md5.h
index 4665f37855..382c10f0b9 100644
--- a/engines/scumm/scumm-md5.h
+++ b/engines/scumm/scumm-md5.h
@@ -1,5 +1,5 @@
/*
- This file was generated by the md5table tool on Tue Oct 20 22:58:44 2020
+ This file was generated by the md5table tool on Sat Nov 21 22:26:35 2020
DO NOT EDIT MANUALLY!
*/
@@ -512,6 +512,7 @@ static const MD5Table md5table[] = {
{ "ac1642b6edfb8521ca03760126f1c250", "tentacle", "", "Demo", -1, Common::DE_DEU, Common::kPlatformDOS },
{ "ac62d50e39492ee3738b4e83a5ac780f", "freddi2", "HE 80", "", -1, Common::NL_NLD, Common::kPlatformWindows },
{ "acad97ab1c6fc2a5b2d98abf6db4a190", "tentacle", "Floppy", "Floppy", -1, Common::EN_ANY, Common::kPlatformUnknown },
+ { "add05fa3f50d9264f47638516c9496dd", "atlantis", "", "CD", 12035, Common::RU_RUS, Common::kPlatformDOS },
{ "ae94f110a14ce71fc515d5b648827a8f", "tentacle", "Floppy", "Floppy", -1, Common::ES_ESP, Common::kPlatformDOS },
{ "aeec382acef62e122bf0d5b14581cfa4", "zak", "V1", "", -1, Common::IT_ITA, Common::kPlatformC64 },
{ "aef415cc5dc063e3668359c2657169f3", "PuttTime", "HE 99", "Mini Game", 18458, Common::DE_DEU, Common::kPlatformWindows },
More information about the Scummvm-git-logs
mailing list