[Scummvm-git-logs] scummvm master -> 163edd9557fdc1331fd93f41b2b00a61a4c85725
eriktorbjorn
noreply at scummvm.org
Wed Sep 6 05:56:08 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
163edd9557 SCUMM: Add F6 ("Selection screen") to TurboGrafx Loom help dialog
Commit: 163edd9557fdc1331fd93f41b2b00a61a4c85725
https://github.com/scummvm/scummvm/commit/163edd9557fdc1331fd93f41b2b00a61a4c85725
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2023-09-06T07:55:35+02:00
Commit Message:
SCUMM: Add F6 ("Selection screen") to TurboGrafx Loom help dialog
Changed paths:
engines/scumm/help.cpp
diff --git a/engines/scumm/help.cpp b/engines/scumm/help.cpp
index 92719550950..70646c29881 100644
--- a/engines/scumm/help.cpp
+++ b/engines/scumm/help.cpp
@@ -71,6 +71,10 @@ void ScummHelp::updateStrings(byte gameId, byte version, Common::Platform platfo
case 1:
title = _("Common keyboard commands:");
ADD_BIND("F5", _("Save / Load dialog"));
+ // I18N: "Selection screen" is what the English game manual
+ // calls it. It contains various options, a sound test, etc.
+ if (gameId == GID_LOOM && platform == Common::kPlatformPCEngine)
+ ADD_BIND("F6", _("Selection screen"));
ADD_BIND(".", _("Skip line of text"));
ADD_BIND(_("Esc"), _("Skip cutscene"));
ADD_BIND(_("Space"), _("Pause game"));
More information about the Scummvm-git-logs
mailing list