[Scummvm-git-logs] scummvm master -> 3c39d3736c727be5eda1b428ff87d9b15aec5732
bluegr
noreply at scummvm.org
Sun Nov 13 00:01:40 UTC 2022
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:
5b061f0e19 SCUMM: Always document that '.' skips a line of text (not just v5+)
3c39d3736c SCUMM: Document the Shift + V action cheat for Full Throttle
Commit: 5b061f0e19007b08669f0c861a820e00cb7c41e2
https://github.com/scummvm/scummvm/commit/5b061f0e19007b08669f0c861a820e00cb7c41e2
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2022-11-13T02:01:36+02:00
Commit Message:
SCUMM: Always document that '.' skips a line of text (not just v5+)
It looks like this was done because of Trac#942, but that was nearly
20 years ago, and now it looks like we just implement it for every
version.
Changed paths:
engines/scumm/help.cpp
diff --git a/engines/scumm/help.cpp b/engines/scumm/help.cpp
index 81c9511d68a..92719550950 100644
--- a/engines/scumm/help.cpp
+++ b/engines/scumm/help.cpp
@@ -71,8 +71,7 @@ void ScummHelp::updateStrings(byte gameId, byte version, Common::Platform platfo
case 1:
title = _("Common keyboard commands:");
ADD_BIND("F5", _("Save / Load dialog"));
- if (version >= 5)
- ADD_BIND(".", _("Skip line of text"));
+ ADD_BIND(".", _("Skip line of text"));
ADD_BIND(_("Esc"), _("Skip cutscene"));
ADD_BIND(_("Space"), _("Pause game"));
ADD_BIND(_("Ctrl") + U32String(" 0-9"), _("Load saved game 1-10"));
Commit: 3c39d3736c727be5eda1b428ff87d9b15aec5732
https://github.com/scummvm/scummvm/commit/3c39d3736c727be5eda1b428ff87d9b15aec5732
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2022-11-13T02:01:36+02:00
Commit Message:
SCUMM: Document the Shift + V action cheat for Full Throttle
For the last 18 years, I've rely tried not to cheat there, but the
controls are just very bad (even in the Remaster). Fortunately, the
game has an official cheat shortcut if one wants to skip the bike
and derby fight action sequences, so let's document it since we're
already documenting the one for the fights in Indy4.
Changed paths:
engines/scumm/help.cpp
diff --git a/engines/scumm/help.cpp b/engines/scumm/help.cpp
index 92719550950..0f20cdaa5cf 100644
--- a/engines/scumm/help.cpp
+++ b/engines/scumm/help.cpp
@@ -232,6 +232,9 @@ void ScummHelp::updateStrings(byte gameId, byte version, Common::Platform platfo
ADD_BIND("i", _("Inventory"));
ADD_BIND("p", _("Punch"));
ADD_BIND("k", _("Kick"));
+ ADD_LINE;
+ // I18N: A shortcut to skip the bike fight and derby sequences in Full Throttle
+ ADD_BIND(_("Shift") + U32String(" v"), _("Fight cheat"));
break;
case GID_DIG:
ADD_BIND("e", _("Examine"));
More information about the Scummvm-git-logs
mailing list