[Scummvm-git-logs] scummvm master -> 71abdfce088a96653d8104375ba12f44d7252a9f
sev-
noreply at scummvm.org
Sun Oct 29 19:58:19 UTC 2023
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:
93b418547d SCUMM: Add the new Ctrl+D drafts inventory command to the help screen
71abdfce08 SCUMM: Added Russian draft names to Lomm drafts inventory
Commit: 93b418547d17610f9684d5fd85fa7d9bbcc97755
https://github.com/scummvm/scummvm/commit/93b418547d17610f9684d5fd85fa7d9bbcc97755
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-10-29T20:58:13+01:00
Commit Message:
SCUMM: Add the new Ctrl+D drafts inventory command to the help screen
Changed paths:
engines/scumm/help.cpp
diff --git a/engines/scumm/help.cpp b/engines/scumm/help.cpp
index 70646c29881..d805b0e25f5 100644
--- a/engines/scumm/help.cpp
+++ b/engines/scumm/help.cpp
@@ -186,6 +186,8 @@ void ScummHelp::updateStrings(byte gameId, byte version, Common::Platform platfo
ADD_BIND("y, a", _("play A on distaff"));
ADD_BIND("u, b", _("play B on distaff"));
ADD_BIND("i, C", _("play C major on distaff"));
+ // I18N: Drafts is set of notes in Loom to invoke spells
+ ADD_BIND(_("Ctrl") + U32String(" d"), _("Shows the drafts inventory"));
break;
case GID_MONKEY_EGA:
case GID_MONKEY_VGA:
Commit: 71abdfce088a96653d8104375ba12f44d7252a9f
https://github.com/scummvm/scummvm/commit/71abdfce088a96653d8104375ba12f44d7252a9f
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-10-29T20:58:13+01:00
Commit Message:
SCUMM: Added Russian draft names to Lomm drafts inventory
Changed paths:
engines/scumm/gfx_gui.cpp
diff --git a/engines/scumm/gfx_gui.cpp b/engines/scumm/gfx_gui.cpp
index 60899c7ff5b..0dd0068de07 100644
--- a/engines/scumm/gfx_gui.cpp
+++ b/engines/scumm/gfx_gui.cpp
@@ -1649,7 +1649,7 @@ void ScummEngine::setUpDraftsInventory() {
}
}
-static const char *loomDraftsNames[6][18] = {
+static const char *loomDraftsNames[7][18] = {
// ENGLISH
{
"Drafts",
@@ -1740,7 +1740,30 @@ static const char *loomDraftsNames[6][18] = {
":\x84\x91\x89\x98\x84",
":\x9a\x85\x81\x82\x99\x90",
":\x92\x85\x83\x89\x20\x80\x8c"
- }
+ },
+
+ // RUSSIAN
+ {
+ "\x93\xA7\xAE\xE0\xEB",
+ "\x8E\xE2\xAA\xE0\xEB\xA2\xA0\xAD\xA8\xA5:",
+ "\x91\xAE\xAB\xAE\xAC\xA0 \xA2 \xA7\xAE\xAB\xAE\xE2:",
+ "\x8E\xAA\xE0\xA0\xE8\xA8\xA2\xA0\xAD\xA8\xA5:",
+ "\x8D\xAE\xE7\xAD\xAE\xA5 \xA7\xE0\xA5\xAD\xA8\xA5:",
+ "\x91\xAA\xE0\xE3\xE7\xA8\xA2\xA0\xAD\xA8\xA5:",
+ "\x91\xAE\xAD:",
+ "\x8E\xAF\xE3\xE1\xE2\xAE\xE8\xA5\xAD\xA8\xA5:",
+ "\x8D\xA5\xA2\xA8\xA4\xA8\xAC\xAE\xE1\xE2\xEC:",
+ "\x93\xA6\xA0\xE1:",
+ "\x87\xA0\xE2\xAE\xE7\xAA\xA0:",
+ "\x8E\xE2\xE0\xA0\xA6\xA5\xAD\xA8\xA5:",
+ "\x88\xE1\xE6\xA5\xAB\xA5\xAD\xA8\xA5:",
+ "\x8C\xAE\xAB\xE7\xA0\xAD\xA8\xA5:",
+ "\x8F\xE0\xA8\xA4\xA0\xAD\xA8\xA5 \xE4\xAE\xE0\xAC:",
+ "\x90\xA0\xA7\xA2\xAE\xAF\xAB\xAE\xE9\xA5\xAD\xA8\xA5:",
+ "\x8F\xE0\xA5\xAE\xA1\xE0\xA0\xA6\xA5\xAD\xA8\xA5:",
+ "\x8D\xA5\xA8\xA7\xA2\xA5\xE1\xE2\xAD\xEB\xA9:"
+ },
+
};
void ScummEngine::drawDraftsInventory() {
@@ -1780,6 +1803,9 @@ void ScummEngine::drawDraftsInventory() {
case Common::HE_ISR:
names = loomDraftsNames[5];
break;
+ case Common::RU_RUS:
+ names = loomDraftsNames[6];
+ break;
default:
names = loomDraftsNames[0];
}
More information about the Scummvm-git-logs
mailing list