aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/help.cpp
diff options
context:
space:
mode:
authorBen Castricum2016-11-29 11:43:57 +0100
committerBen Castricum2016-11-29 20:15:20 +0100
commit6f38c1e55dd9d9ad764faf123c3ee01ae23d7ffc (patch)
treee522d825ae4af7a68435649f335e92d3be9881f4 /engines/scumm/help.cpp
parent38eb27212d32351e885806f96555e58f081c6844 (diff)
downloadscummvm-rg350-6f38c1e55dd9d9ad764faf123c3ee01ae23d7ffc.tar.gz
scummvm-rg350-6f38c1e55dd9d9ad764faf123c3ee01ae23d7ffc.tar.bz2
scummvm-rg350-6f38c1e55dd9d9ad764faf123c3ee01ae23d7ffc.zip
ALL: game state => saved game
Diffstat (limited to 'engines/scumm/help.cpp')
-rw-r--r--engines/scumm/help.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/help.cpp b/engines/scumm/help.cpp
index 2281e954ef..ce0d13b4fc 100644
--- a/engines/scumm/help.cpp
+++ b/engines/scumm/help.cpp
@@ -77,8 +77,8 @@ void ScummHelp::updateStrings(byte gameId, byte version, Common::Platform platfo
ADD_BIND(".", _("Skip line of text"));
ADD_BIND(_("Esc"), _("Skip cutscene"));
ADD_BIND(_("Space"), _("Pause game"));
- ADD_BIND(String(_("Ctrl")) + " 0-9", _("Load game state 1-10"));
- ADD_BIND(String(_("Alt")) + " 0-9", _("Save game state 1-10"));
+ ADD_BIND(String(_("Ctrl")) + " 0-9", _("Load saved game 1-10"));
+ ADD_BIND(String(_("Alt")) + " 0-9", _("Save game 1-10"));
#ifdef MACOSX
ADD_BIND("Cmd q", _("Quit"));
#else